Class: Aws::LexModelBuildingService::Types::GetIntentRequest

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 GetIntentRequest data as a hash:

{
  name: "IntentName", # required
  version: "Version", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the intent. The name is case sensitive.

Returns:

  • (String)


1647
1648
1649
1650
1651
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1647

class GetIntentRequest < Struct.new(
  :name,
  :version)
  include Aws::Structure
end

#versionString

The version of the intent.

Returns:

  • (String)


1647
1648
1649
1650
1651
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1647

class GetIntentRequest < Struct.new(
  :name,
  :version)
  include Aws::Structure
end