Skip to main content

client_properties

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

Overview

Nameclient_properties
TypeResource
Idaws.workspaces.client_properties

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
client_properties_listarrayInformation about the specified Amazon WorkSpaces clients.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_client_propertiesselectregionRetrieves a list that describes one or more specified Amazon WorkSpaces clients.
modify_client_propertiesupdateregion, ResourceId, ClientPropertiesModifies the properties of the specified Amazon WorkSpaces clients.

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 a list that describes one or more specified Amazon WorkSpaces clients.

SELECT
client_properties_list
FROM aws.workspaces.client_properties
WHERE region = '{{ region }}' -- required
;

UPDATE examples

Modifies the properties of the specified Amazon WorkSpaces clients.

UPDATE aws.workspaces.client_properties
SET
ResourceId = '{{ ResourceId }}',
ClientProperties = '{{ ClientProperties }}'
WHERE
region = '{{ region }}' --required
AND ResourceId = '{{ ResourceId }}' --required
AND ClientProperties = '{{ ClientProperties }}' --required;