Class: Aws::LexModelBuildingService::Types::GetSlotTypeRequest

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the slot type. The name is case sensitive.

Returns:

  • (String)


1871
1872
1873
1874
1875
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1871

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

#versionString

The version of the slot type.

Returns:

  • (String)


1871
1872
1873
1874
1875
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1871

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