from_configurations
Creates, updates, deletes, gets or lists a from_configurations resource.
Overview
| Name | from_configurations |
| Type | Resource |
| Id | aws.chatbot.from_configurations |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
disassociate_from_configuration | update | region, Resource, ChatConfiguration | Unlink a resource, for example a custom action, from 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) |
UPDATE examples
- disassociate_from_configuration
Unlink a resource, for example a custom action, from a channel configuration.
UPDATE aws.chatbot.from_configurations
SET
Resource = '{{ Resource }}',
ChatConfiguration = '{{ ChatConfiguration }}'
WHERE
region = '{{ region }}' --required
AND Resource = '{{ Resource }}' --required
AND ChatConfiguration = '{{ ChatConfiguration }}' --required;