Skip to main content

properties

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

Overview

Nameproperties
TypeResource
Idaws.iottwinmaker.properties

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe string that specifies the next page of property results. (pattern: <code>.*</code>)
property_summariesarrayA list of objects that contain information about the properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_propertiesselectworkspace_id, regionThis API lists the properties of a component.

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)
workspace_idstringThe workspace ID.

SELECT examples

This API lists the properties of a component.

SELECT
next_token,
property_summaries
FROM aws.iottwinmaker.properties
WHERE workspace_id = '{{ workspace_id }}' -- required
AND region = '{{ region }}' -- required
;