Class: Aws::LexModelBuildingService::Types::GetBotChannelAssociationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotChannelAssociationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass GetBotChannelAssociationRequest data as a hash:
{
name: "BotChannelName", # required
bot_name: "BotName", # required
bot_alias: "AliasName", # required
}
Instance Attribute Summary collapse
-
#bot_alias ⇒ String
An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
-
#bot_name ⇒ String
The name of the Amazon Lex bot.
-
#name ⇒ String
The name of the association between the bot and the channel.
Instance Attribute Details
#bot_alias ⇒ String
An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
1078 1079 1080 1081 1082 1083 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1078 class GetBotChannelAssociationRequest < Struct.new( :name, :bot_name, :bot_alias) include Aws::Structure end |
#bot_name ⇒ String
The name of the Amazon Lex bot.
1078 1079 1080 1081 1082 1083 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1078 class GetBotChannelAssociationRequest < Struct.new( :name, :bot_name, :bot_alias) include Aws::Structure end |
#name ⇒ String
The name of the association between the bot and the channel. The name is case sensitive.
1078 1079 1080 1081 1082 1083 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1078 class GetBotChannelAssociationRequest < Struct.new( :name, :bot_name, :bot_alias) include Aws::Structure end |