Associate Workspace
| connect_associate_workspace | R Documentation |
Associates a workspace with one or more users or routing profiles, allowing them to access the workspace's configured views and pages¶
Description¶
Associates a workspace with one or more users or routing profiles, allowing them to access the workspace's configured views and pages.
Usage¶
connect_associate_workspace(InstanceId, WorkspaceId, ResourceArns)
Arguments¶
InstanceId |
[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
WorkspaceId |
[required] The identifier of the workspace. |
ResourceArns |
[required] The Amazon Resource Names (ARNs) of the resources to associate with the workspace. Valid resource types are users and routing profiles. |
Value¶
A list with the following syntax:
list(
SuccessfulList = list(
list(
ResourceArn = "string"
)
),
FailedList = list(
list(
ResourceArn = "string",
ErrorCode = "string",
ErrorMessage = "string"
)
)
)
Request syntax¶
svc$associate_workspace(
InstanceId = "string",
WorkspaceId = "string",
ResourceArns = list(
"string"
)
)