Skip to main content

software_sets

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

Overview

Namesoftware_sets
TypeResource
Idaws.workspaces_thin_client.software_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the software set. (pattern: <code>[0-9]{1,9}</code>)
arnstringThe Amazon Resource Name (ARN) of the software set. (pattern: <code>arn:[\w+=/,.@-]+:[a-zA-Z0-9-]+:[a-zA-Z0-9-]*:[0-9]{0,12}:[a-zA-Z0-9-/._]+</code>)
released_atstring (date-time)The timestamp of when the software set was released.
softwarearrayA list of the software components in the software set.
supported_untilstring (date-time)The timestamp of the end of support for the software set.
validation_statusstringAn option to define if the software set has been validated. (VALIDATED, NOT_VALIDATED)
versionstringThe version of the software set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_software_setselectid, regionReturns information for a software set.
list_software_setsselectregionnextToken, maxResultsReturns a list of software sets.
update_software_setupdateid, region, validationStatusUpdates a software set.

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
idstringThe ID of the software set to update.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results that are returned per call. You can use nextToken to obtain further pages of results. This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
nextTokenstringIf nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.

SELECT examples

Returns information for a software set.

SELECT
id,
arn,
released_at,
software,
supported_until,
validation_status,
version
FROM aws.workspaces_thin_client.software_sets
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;

UPDATE examples

Updates a software set.

UPDATE aws.workspaces_thin_client.software_sets
SET
validationStatus = '{{ validationStatus }}'
WHERE
id = '{{ id }}' --required
AND region = '{{ region }}' --required
AND validationStatus = '{{ validationStatus }}' --required;