Class: Aws::LexModelBuildingService::Types::GetSlotTypesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetSlotTypesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of slot types to return in the response.
-
#name_contains ⇒ String
Substring to match in slot type names.
-
#next_token ⇒ String
A pagination token that fetches the next page of slot types.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of slot types to return in the response. The default is 10.
2334 2335 2336 2337 2338 2339 2340 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2334 class GetSlotTypesRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] include Aws::Structure end |
#name_contains ⇒ String
Substring to match in slot type names. A slot type will be returned if any part of its name matches the substring. For example, “xyz” matches both “xyzabc” and “abcxyz.”
2334 2335 2336 2337 2338 2339 2340 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2334 class GetSlotTypesRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token that fetches the next page of slot types. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch next page of slot types, specify the pagination token in the next request.
2334 2335 2336 2337 2338 2339 2340 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2334 class GetSlotTypesRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] include Aws::Structure end |