Class: Aws::LexModelBuildingService::Types::CreateIntentVersionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lexmodelbuildingservice/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#checksumString

Checksum of the ‘$LATEST` version of the intent that should be used to create the new version. If you specify a checksum and the `$LATEST` version of the intent has a different checksum, Amazon Lex returns a `PreconditionFailedException` exception and doesn’t publish a new version. If you don’t specify a checksum, Amazon Lex publishes the ‘$LATEST` version.

Returns:

  • (String)


529
530
531
532
533
534
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 529

class CreateIntentVersionRequest < Struct.new(
  :name,
  :checksum)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the intent that you want to create a new version of. The name is case sensitive.

Returns:

  • (String)


529
530
531
532
533
534
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 529

class CreateIntentVersionRequest < Struct.new(
  :name,
  :checksum)
  SENSITIVE = []
  include Aws::Structure
end