Describe Application Associations
workspaces_describe_application_associations | R Documentation |
Describes the associations between the application and the specified associated resources¶
Description¶
Describes the associations between the application and the specified associated resources.
Usage¶
workspaces_describe_application_associations(MaxResults, NextToken,
ApplicationId, AssociatedResourceTypes)
Arguments¶
MaxResults |
The maximum number of associations to return. |
NextToken |
If you received a |
ApplicationId |
[required] The identifier of the specified application. |
AssociatedResourceTypes |
[required] The resource type of the associated resources. |
Value¶
A list with the following syntax:
list(
Associations = list(
list(
ApplicationId = "string",
AssociatedResourceId = "string",
AssociatedResourceType = "WORKSPACE"|"BUNDLE"|"IMAGE",
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"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_application_associations(
MaxResults = 123,
NextToken = "string",
ApplicationId = "string",
AssociatedResourceTypes = list(
"WORKSPACE"|"BUNDLE"|"IMAGE"
)
)