You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::LexModelBuildingService::Types::GetBuiltinIntentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBuiltinIntentsRequest
- Defined in:
- (unknown)
Overview
When passing GetBuiltinIntentsRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
locale: "de-DE", # accepts de-DE, en-AU, en-GB, en-US, es-ES, es-US, fr-FR, fr-CA, it-IT
signature_contains: "String",
next_token: "NextToken",
max_results: 1,
}
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.
Possible values:
- de-DE
- en-AU
- en-GB
- en-US
- es-ES
- es-US
- fr-FR
- fr-CA
- it-IT
#max_results ⇒ Integer
The maximum number of intents to return in the response. The default is 10.
#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.
#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.