Class: Aws::LexModelBuildingService::Types::GetSlotTypesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetSlotTypesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the response is truncated, it includes a pagination token that you can specify in your next request to fetch the next page of slot types.
-
#slot_types ⇒ Array<Types::SlotTypeMetadata>
An array of objects, one for each slot type, that provides information such as the name of the slot type, the version, and a description.
Instance Attribute Details
#next_token ⇒ String
If the response is truncated, it includes a pagination token that you can specify in your next request to fetch the next page of slot types.
2024 2025 2026 2027 2028 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2024 class GetSlotTypesResponse < Struct.new( :slot_types, :next_token) include Aws::Structure end |
#slot_types ⇒ Array<Types::SlotTypeMetadata>
An array of objects, one for each slot type, that provides information such as the name of the slot type, the version, and a description.
2024 2025 2026 2027 2028 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2024 class GetSlotTypesResponse < Struct.new( :slot_types, :next_token) include Aws::Structure end |