You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::LexModelBuildingService::Types::GetIntentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetIntentsRequest
- Defined in:
- (unknown)
Overview
When passing GetIntentsRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
next_token: "NextToken",
max_results: 1,
name_contains: "IntentName",
}
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of intents to return in the response.
-
#name_contains ⇒ String
Substring to match in intent names.
-
#next_token ⇒ String
A pagination token that fetches the next page of intents.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of intents to return in the response. The default is 10.
#name_contains ⇒ String
Substring to match in intent names. An intent will be returned if any part of its name matches the substring. For example, \"xyz\" matches both \"xyzabc\" and \"abcxyz.\"
#next_token ⇒ String
A pagination token that fetches the next page of intents. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, specify the pagination token in the next request.