Class: Aws::LexModelBuildingService::Types::GetBuiltinSlotTypesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBuiltinSlotTypesRequest
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#locale ⇒ String
A list of locales that the slot type supports.
-
#max_results ⇒ Integer
The maximum number of slot types to return in the response.
-
#next_token ⇒ String
A pagination token that fetches the next page of slot types.
-
#signature_contains ⇒ String
Substring to match in built-in slot type signatures.
Instance Attribute Details
#locale ⇒ String
A list of locales that the slot type supports.
1644 1645 1646 1647 1648 1649 1650 1651 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1644 class GetBuiltinSlotTypesRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of slot types to return in the response. The default is 10.
1644 1645 1646 1647 1648 1649 1650 1651 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1644 class GetBuiltinSlotTypesRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) 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 the next page of slot types, specify the pagination token in the next request.
1644 1645 1646 1647 1648 1649 1650 1651 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1644 class GetBuiltinSlotTypesRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#signature_contains ⇒ String
Substring to match in built-in slot type signatures. A slot type will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."
1644 1645 1646 1647 1648 1649 1650 1651 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1644 class GetBuiltinSlotTypesRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |