Class: Aws::LexModelBuildingService::Types::Intent

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

Overview

Note:

When making an API call, you may pass Intent data as a hash:

{
  intent_name: "IntentName", # required
  intent_version: "Version", # required
}

Identifies the specific version of an intent.

Instance Attribute Summary collapse

Instance Attribute Details

#intent_nameString

The name of the intent.

Returns:

  • (String)


2103
2104
2105
2106
2107
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2103

class Intent < Struct.new(
  :intent_name,
  :intent_version)
  include Aws::Structure
end

#intent_versionString

The version of the intent.

Returns:

  • (String)


2103
2104
2105
2106
2107
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2103

class Intent < Struct.new(
  :intent_name,
  :intent_version)
  include Aws::Structure
end