workspace_associations
Creates, updates, deletes, gets or lists a workspace_associations resource.
Overview
| Name | workspace_associations |
| Type | Resource |
| Id | aws.connect.workspace_associations |
Fields
The following fields are returned by SELECT queries:
- search_workspace_associations
| Name | Datatype | Description |
|---|---|---|
resource_arn | string | The Amazon Resource Name (ARN) of the associated resource. |
resource_id | string | The identifier of the associated resource (user or routing profile). |
resource_name | string | The name of the associated resource. (pattern: <code>.\S.</code>) |
resource_type | string | The type of resource associated with the workspace. Valid values are: USER and ROUTING_PROFILE. |
workspace_arn | string | The Amazon Resource Name (ARN) of the workspace. |
workspace_id | string | The identifier of the workspace. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
search_workspace_associations | select | region | Searches for workspace associations with users or routing profiles based on various criteria. |
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
- search_workspace_associations
Searches for workspace associations with users or routing profiles based on various criteria.
SELECT
resource_arn,
resource_id,
resource_name,
resource_type,
workspace_arn,
workspace_id
FROM aws.connect.workspace_associations
WHERE region = '{{ region }}' -- required
;