aws.lex_models.get_bot_channel_associations
Example SQL Queries
SELECT * FROMaws.lex_models.get_bot_channel_associationsWHERE"bot_name" = 'VALUE'AND "bot_alias" = 'VALUE';Description
Returns a list of all of the channels associated with the specified bot.
The GetBotChannelAssociations operation requires permissions for the lex:GetBotChannelAssociations action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| bot_alias Required Input Column An alias pointing to the specific version of the Amazon Lex bot to which this association is being made. | VARCHAR |
| bot_name Required Input Column The name of the Amazon Lex bot to which this association is being made. Currently, Amazon Lex supports associations with Facebook and Slack, and Twilio. | VARCHAR |
| name_contains Input Column 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. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| bot_configuration Provides information necessary to communicate with the messaging platform. | MAP(VARCHAR, VARCHAR) |
| created_date The date that the association between the Amazon Lex bot and the channel was created. | TIMESTAMP_S |
| description A text description of the association you are creating. | VARCHAR |
| failure_reason If status is FAILED, Amazon Lex provides the reason that it failed to create the association. | VARCHAR |
| name The name of the association between the bot and the channel. | VARCHAR |
| status The status of the bot channel.
| VARCHAR |
| type Specifies the type of association by indicating the type of channel being established between the Amazon Lex bot and the external messaging platform. | VARCHAR |