Class: Aws::LexModelBuildingService::Types::DeleteBotChannelAssociationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::DeleteBotChannelAssociationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteBotChannelAssociationRequest data as a hash:
{
name: "BotChannelName", # required
bot_name: "BotName", # required
bot_alias: "AliasName", # required
}
Instance Attribute Summary collapse
-
#bot_alias ⇒ String
An alias that points 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.
Instance Attribute Details
#bot_alias ⇒ String
An alias that points to the specific version of the Amazon Lex bot to which this association is being made.
629 630 631 632 633 634 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 629 class DeleteBotChannelAssociationRequest < Struct.new( :name, :bot_name, :bot_alias) include Aws::Structure end |
#bot_name ⇒ String
The name of the Amazon Lex bot.
629 630 631 632 633 634 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 629 class DeleteBotChannelAssociationRequest < Struct.new( :name, :bot_name, :bot_alias) include Aws::Structure end |
#name ⇒ String
The name of the association. The name is case sensitive.
629 630 631 632 633 634 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 629 class DeleteBotChannelAssociationRequest < Struct.new( :name, :bot_name, :bot_alias) include Aws::Structure end |