Class: Aws::LexModelBuildingService::Types::CreateBotVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::CreateBotVersionRequest
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#checksum ⇒ String
Identifies a specific revision of the
$LATEST
version of the bot. -
#name ⇒ String
The name of the bot that you want to create a new version of.
Instance Attribute Details
#checksum ⇒ String
Identifies a specific revision of the $LATEST
version of the bot.
If you specify a checksum and the $LATEST
version of the bot has a
different checksum, a PreconditionFailedException
exception is
returned and Amazon Lex doesn't publish a new version. If you
don't specify a checksum, Amazon Lex publishes the $LATEST
version.
373 374 375 376 377 378 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 373 class CreateBotVersionRequest < Struct.new( :name, :checksum) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the bot that you want to create a new version of. The name is case sensitive.
373 374 375 376 377 378 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 373 class CreateBotVersionRequest < Struct.new( :name, :checksum) SENSITIVE = [] include Aws::Structure end |