software_associations
Creates, updates, deletes, gets or lists a software_associations resource.
Overview
| Name | software_associations |
| Type | Resource |
| Id | aws.appstream.software_associations |
Fields
The following fields are returned by SELECT queries:
- describe_software_associations
| Name | Datatype | Description |
|---|---|---|
associated_resource | string | The 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_token | string | The pagination token to use to retrieve the next page of results for this operation. |
software_associations | array | Collection 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_software_associations | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_software_associations
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
;