Describe Workspace Associations
workspaces_describe_workspace_associations | R Documentation |
Describes the associations betweens applications and the specified WorkSpace¶
Description¶
Describes the associations betweens applications and the specified WorkSpace.
Usage¶
Arguments¶
WorkspaceId
[required] The identifier of the WorkSpace.
AssociatedResourceTypes
[required] The resource types of the associated resources.
Value¶
A list with the following syntax:
list(
Associations = list(
list(
AssociatedResourceId = "string",
AssociatedResourceType = "APPLICATION",
Created = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
State = "PENDING_INSTALL"|"PENDING_INSTALL_DEPLOYMENT"|"PENDING_UNINSTALL"|"PENDING_UNINSTALL_DEPLOYMENT"|"INSTALLING"|"UNINSTALLING"|"ERROR"|"COMPLETED"|"REMOVED",
StateReason = list(
ErrorCode = "ValidationError.InsufficientDiskSpace"|"ValidationError.InsufficientMemory"|"ValidationError.UnsupportedOperatingSystem"|"DeploymentError.InternalServerError"|"DeploymentError.WorkspaceUnreachable",
ErrorMessage = "string"
),
WorkspaceId = "string"
)
)
)