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