Skip to main content

software_associations

Creates, updates, deletes, gets or lists a software_associations resource.

Overview

Namesoftware_associations
TypeResource
Idaws.appstream.software_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
associated_resourcestringThe ARN of the resource to describe software associations. (pattern: <code>^arn:aws(?:-cn|-iso-b|-iso|-us-gov)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.\-]{0,1023}$</code>)
next_tokenstringThe pagination token to use to retrieve the next page of results for this operation.
software_associationsarrayCollection of license included applications association details including: License included application name and version information Deployment status (SoftwareDeploymentStatus enum) Error details for failed deployments Association timestamps

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_software_associationsselectregionRetrieves license included application associations for a specified resource.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves license included application associations for a specified resource.

SELECT
associated_resource,
next_token,
software_associations
FROM aws.appstream.software_associations
WHERE region = '{{ region }}' -- required
;