Deploy Workspace Applications
| workspaces_deploy_workspace_applications | R Documentation |
Deploys associated applications to the specified WorkSpace¶
Description¶
Deploys associated applications to the specified WorkSpace
Usage¶
Arguments¶
WorkspaceId[required] The identifier of the WorkSpace.
ForceIndicates whether the force flag is applied for the specified WorkSpace. When the force flag is enabled, it allows previously failed deployments to be retried.
Value¶
A list with the following syntax:
list(
Deployment = 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"
)
)
)
)