Skip to content

Describe Image Associations

workspaces_describe_image_associations R Documentation

Describes the associations between the applications and the specified image

Description

Describes the associations between the applications and the specified image.

Usage

workspaces_describe_image_associations(ImageId, AssociatedResourceTypes)

Arguments

ImageId

[required] The identifier of the image.

AssociatedResourceTypes

[required] The resource types of the associated resource.

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"
      ),
      ImageId = "string",
      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_image_associations(
  ImageId = "string",
  AssociatedResourceTypes = list(
    "APPLICATION"
  )
)