Class: Aws::LexModelBuildingService::Types::GetBotsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass GetBotsRequest data as a hash:
{
next_token: "NextToken",
max_results: 1,
name_contains: "BotName",
}
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of bots to return in the response that the request will return.
-
#name_contains ⇒ String
Substring to match in bot names.
-
#next_token ⇒ String
A pagination token that fetches the next page of bots.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of bots to return in the response that the request will return. The default is 10.
1430 1431 1432 1433 1434 1435 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1430 class GetBotsRequest < Struct.new( :next_token, :max_results, :name_contains) include Aws::Structure end |
#name_contains ⇒ String
Substring to match in bot names. A bot will be returned if any part of its name matches the substring. For example, “xyz” matches both “xyzabc” and “abcxyz.”
1430 1431 1432 1433 1434 1435 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1430 class GetBotsRequest < Struct.new( :next_token, :max_results, :name_contains) include Aws::Structure end |
#next_token ⇒ String
A pagination token that fetches the next page of bots. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of bots, specify the pagination token in the next request.
1430 1431 1432 1433 1434 1435 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1430 class GetBotsRequest < Struct.new( :next_token, :max_results, :name_contains) include Aws::Structure end |