Class: Aws::LexModelBuildingService::Types::GetBotAliasRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lexmodelbuildingservice/types.rb

Overview

Note:

When making an API call, you may pass GetBotAliasRequest data as a hash:

{
  name: "AliasName", # required
  bot_name: "BotName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#bot_nameString

The name of the bot.

Returns:

  • (String)


944
945
946
947
948
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 944

class GetBotAliasRequest < Struct.new(
  :name,
  :bot_name)
  include Aws::Structure
end

#nameString

The name of the bot alias. The name is case sensitive.

Returns:

  • (String)


944
945
946
947
948
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 944

class GetBotAliasRequest < Struct.new(
  :name,
  :bot_name)
  include Aws::Structure
end