Class: Aws::LexModelBuildingService::Types::GetBotChannelAssociationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotChannelAssociationsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
When making an API call, you may pass GetBotChannelAssociationsRequest data as a hash:
{
bot_name: "BotName", # required
bot_alias: "AliasNameOrListAll", # required
next_token: "NextToken",
max_results: 1,
name_contains: "BotChannelName",
}
Instance Attribute Summary collapse
-
#bot_alias ⇒ String
An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
-
#bot_name ⇒ String
The name of the Amazon Lex bot in the association.
-
#max_results ⇒ Integer
The maximum number of associations to return in the response.
-
#name_contains ⇒ String
Substring to match in channel association names.
-
#next_token ⇒ String
A pagination token for fetching the next page of associations.
Instance Attribute Details
#bot_alias ⇒ String
An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
1171 1172 1173 1174 1175 1176 1177 1178 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1171 class GetBotChannelAssociationsRequest < Struct.new( :bot_name, :bot_alias, :next_token, :max_results, :name_contains) include Aws::Structure end |
#bot_name ⇒ String
The name of the Amazon Lex bot in the association.
1171 1172 1173 1174 1175 1176 1177 1178 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1171 class GetBotChannelAssociationsRequest < Struct.new( :bot_name, :bot_alias, :next_token, :max_results, :name_contains) include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of associations to return in the response. The default is 50.
1171 1172 1173 1174 1175 1176 1177 1178 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1171 class GetBotChannelAssociationsRequest < Struct.new( :bot_name, :bot_alias, :next_token, :max_results, :name_contains) include Aws::Structure end |
#name_contains ⇒ String
Substring to match in channel association names. An association will be returned if any part of its name matches the substring. For example, “xyz” matches both “xyzabc” and “abcxyz.” To return all bot channel associations, use a hyphen (“-”) as the ‘nameContains` parameter.
1171 1172 1173 1174 1175 1176 1177 1178 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1171 class GetBotChannelAssociationsRequest < Struct.new( :bot_name, :bot_alias, :next_token, :max_results, :name_contains) include Aws::Structure end |
#next_token ⇒ String
A pagination token for fetching the next page of associations. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of associations, specify the pagination token in the next request.
1171 1172 1173 1174 1175 1176 1177 1178 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1171 class GetBotChannelAssociationsRequest < Struct.new( :bot_name, :bot_alias, :next_token, :max_results, :name_contains) include Aws::Structure end |