Skip to content

Describe Software Associations

appstream_describe_software_associations R Documentation

Retrieves license included application associations for a specified resource

Description

Retrieves license included application associations for a specified resource.

Usage

appstream_describe_software_associations(AssociatedResource, MaxResults,
  NextToken)

Arguments

AssociatedResource

[required] The ARN of the resource to describe software associations. Possible resources are Image and ImageBuilder.

MaxResults

The maximum number of results to return.

NextToken

The pagination token to use to retrieve the next page of results for this operation.

Value

A list with the following syntax:

list(
  AssociatedResource = "string",
  SoftwareAssociations = list(
    list(
      SoftwareName = "string",
      Status = "STAGED_FOR_INSTALLATION"|"PENDING_INSTALLATION"|"INSTALLED"|"STAGED_FOR_UNINSTALLATION"|"PENDING_UNINSTALLATION"|"FAILED_TO_INSTALL"|"FAILED_TO_UNINSTALL",
      DeploymentError = list(
        list(
          ErrorCode = "string",
          ErrorMessage = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_software_associations(
  AssociatedResource = "string",
  MaxResults = 123,
  NextToken = "string"
)