Class: Aws::LexModelBuildingService::Types::DeleteBotAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::DeleteBotAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteBotAliasRequest data as a hash:
{
name: "AliasName", # required
bot_name: "BotName", # required
}
Instance Attribute Summary collapse
-
#bot_name ⇒ String
The name of the bot that the alias points to.
-
#name ⇒ String
The name of the alias to delete.
Instance Attribute Details
#bot_name ⇒ String
The name of the bot that the alias points to.
599 600 601 602 603 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 599 class DeleteBotAliasRequest < Struct.new( :name, :bot_name) include Aws::Structure end |
#name ⇒ String
The name of the alias to delete. The name is case sensitive.
599 600 601 602 603 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 599 class DeleteBotAliasRequest < Struct.new( :name, :bot_name) include Aws::Structure end |