slack_workspace_configurations
Creates, updates, deletes, gets or lists a slack_workspace_configurations resource.
Overview
| Name | slack_workspace_configurations |
| Type | Resource |
| Id | aws.support_app.slack_workspace_configurations |
Fields
The following fields are returned by SELECT queries:
- list_slack_workspace_configurations
| Name | Datatype | Description |
|---|---|---|
next_token | string | The point where pagination should resume when the response returns only partial results. (pattern: <code>^\S+$</code>) |
slack_workspace_configurations | array | The configurations for a Slack workspace. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_slack_workspace_configurations | select | region | Lists the Slack workspace configurations for an Amazon Web Services account. | |
delete_slack_workspace_configuration | delete | region | Deletes a Slack workspace configuration from your Amazon Web Services account. This operation doesn't delete your Slack workspace. |
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_slack_workspace_configurations
Lists the Slack workspace configurations for an Amazon Web Services account.
SELECT
next_token,
slack_workspace_configurations
FROM aws.support_app.slack_workspace_configurations
WHERE region = '{{ region }}' -- required
;
DELETE examples
- delete_slack_workspace_configuration
Deletes a Slack workspace configuration from your Amazon Web Services account. This operation doesn't delete your Slack workspace.
DELETE FROM aws.support_app.slack_workspace_configurations
WHERE region = '{{ region }}' --required
;