associations
Creates, updates, deletes, gets or lists an associations resource.
Overview
| Name | associations |
| Type | Resource |
| Id | aws.chatbot.associations |
Fields
The following fields are returned by SELECT queries:
- list_associations
| Name | Datatype | Description |
|---|---|---|
resource | string | The Amazon Resource Name (ARN) of the resource (for example, a custom action). (pattern: <code>arn:aws:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_associations | select | region | Lists resources associated with a channel configuration. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_associations
Lists resources associated with a channel configuration.
SELECT
resource
FROM aws.chatbot.associations
WHERE region = '{{ region }}' -- required
;