Class: Aws::LexModelBuildingService::Types::GetBotAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotAliasRequest
- 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
-
#bot_name ⇒ String
The name of the bot.
-
#name ⇒ String
The name of the bot alias.
Instance Attribute Details
#bot_name ⇒ String
The name of the bot.
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 |
#name ⇒ String
The name of the bot alias. The name is case sensitive.
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 |