Skip to content

Describe Bundle Associations

workspaces_describe_bundle_associations R Documentation

Describes the associations between the applications and the specified bundle

Description

Describes the associations between the applications and the specified bundle.

Usage

workspaces_describe_bundle_associations(BundleId,
  AssociatedResourceTypes)

Arguments

BundleId

[required] The identifier of the bundle.

AssociatedResourceTypes

[required] The resource types of the associated resource.

Value

A list with the following syntax:

list(
  Associations = list(
    list(
      AssociatedResourceId = "string",
      AssociatedResourceType = "APPLICATION",
      BundleId = "string",
      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"
      )
    )
  )
)

Request syntax

svc$describe_bundle_associations(
  BundleId = "string",
  AssociatedResourceTypes = list(
    "APPLICATION"
  )
)