Skip to main content

workspace_associations

Creates, updates, deletes, gets or lists a workspace_associations resource.

Overview

Nameworkspace_associations
TypeResource
Idaws.connect.workspace_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resource_arnstringThe Amazon Resource Name (ARN) of the associated resource.
resource_idstringThe identifier of the associated resource (user or routing profile).
resource_namestringThe name of the associated resource. (pattern: <code>.\S.</code>)
resource_typestringThe type of resource associated with the workspace. Valid values are: USER and ROUTING_PROFILE.
workspace_arnstringThe Amazon Resource Name (ARN) of the workspace.
workspace_idstringThe identifier of the workspace.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_workspace_associationsselectregionSearches 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;