Class: Aws::LexModelBuildingService::Types::GetIntentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetIntentsRequest
- 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 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.
2004 2005 2006 2007 2008 2009 2010 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2004 class GetIntentsRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] include Aws::Structure end |
#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.”
2004 2005 2006 2007 2008 2009 2010 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2004 class GetIntentsRequest < 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 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.
2004 2005 2006 2007 2008 2009 2010 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2004 class GetIntentsRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] include Aws::Structure end |