Class: Aws::LexModelBuildingService::Types::GetBuiltinIntentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBuiltinIntentsRequest
- 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 intent supports.
-
#max_results ⇒ Integer
The maximum number of intents to return in the response.
-
#next_token ⇒ String
A pagination token that fetches the next page of intents.
-
#signature_contains ⇒ String
Substring to match in built-in intent signatures.
Instance Attribute Details
#locale ⇒ String
A list of locales that the intent supports.
1590 1591 1592 1593 1594 1595 1596 1597 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1590 class GetBuiltinIntentsRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of intents to return in the response. The default is 10.
1590 1591 1592 1593 1594 1595 1596 1597 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1590 class GetBuiltinIntentsRequest < 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 intents. If this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, use the pagination token in the next request.
1590 1591 1592 1593 1594 1595 1596 1597 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1590 class GetBuiltinIntentsRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#signature_contains ⇒ String
Substring to match in built-in intent signatures. An intent will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit.
1590 1591 1592 1593 1594 1595 1596 1597 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1590 class GetBuiltinIntentsRequest < Struct.new( :locale, :signature_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |