Class: Aws::LexModelBuildingService::Types::GetBotsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotsRequest
- 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 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.
1493 1494 1495 1496 1497 1498 1499 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1493 class GetBotsRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] 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.”
1493 1494 1495 1496 1497 1498 1499 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1493 class GetBotsRequest < 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 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.
1493 1494 1495 1496 1497 1498 1499 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1493 class GetBotsRequest < Struct.new( :next_token, :max_results, :name_contains) SENSITIVE = [] include Aws::Structure end |