Class: Aws::LexModelBuildingService::Types::DeleteBotVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::DeleteBotVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteBotVersionRequest data as a hash:
{
name: "BotName", # required
version: "NumericalVersion", # required
}
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the bot.
-
#version ⇒ String
The version of the bot to delete.
Instance Attribute Details
#name ⇒ String
The name of the bot.
674 675 676 677 678 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 674 class DeleteBotVersionRequest < Struct.new( :name, :version) include Aws::Structure end |
#version ⇒ String
The version of the bot to delete. You cannot delete the ‘$LATEST` version of the bot. To delete the `$LATEST` version, use the DeleteBot operation.
674 675 676 677 678 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 674 class DeleteBotVersionRequest < Struct.new( :name, :version) include Aws::Structure end |