Class: Aws::LexModelBuildingService::Types::CreateSlotTypeVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::CreateSlotTypeVersionRequest
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#checksum ⇒ String
Checksum for the
$LATEST
version of the slot type that you want to publish. -
#name ⇒ String
The name of the slot type that you want to create a new version for.
Instance Attribute Details
#checksum ⇒ String
Checksum for the $LATEST
version of the slot type that you want to
publish. If you specify a checksum and the $LATEST
version of the
slot type has a different checksum, Amazon Lex returns a
PreconditionFailedException
exception and doesn't publish the new
version. If you don't specify a checksum, Amazon Lex publishes the
$LATEST
version.
661 662 663 664 665 666 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 661 class CreateSlotTypeVersionRequest < Struct.new( :name, :checksum) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the slot type that you want to create a new version for. The name is case sensitive.
661 662 663 664 665 666 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 661 class CreateSlotTypeVersionRequest < Struct.new( :name, :checksum) SENSITIVE = [] include Aws::Structure end |