Skip to main content

model_manifest_nodes

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

Overview

Namemodel_manifest_nodes
TypeResource
Idaws.iotfleetwise.model_manifest_nodes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actuatorobjectInformation about a node specified as an actuator. An actuator is a digital representation of a vehicle device.
attributeobjectInformation about a node specified as an attribute. An attribute represents static information about a vehicle.
branchobjectInformation about a node specified as a branch. A group of signals that are defined in a hierarchical structure.
propertyobjectRepresents a member of the complex data structure. The datatype of the property can be either primitive or another struct.
sensorobjectAn input component that reports the environmental condition of a vehicle. You can collect data about fluid levels, temperatures, vibrations, or battery voltage from sensors.
structobjectRepresents a complex or higher-order data structure.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_model_manifest_nodesselectregionLists information about nodes specified in a vehicle model (model manifest). This API operation uses pagination. Specify the nextToken parameter in the request to return more results.

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

Lists information about nodes specified in a vehicle model (model manifest). This API operation uses pagination. Specify the nextToken parameter in the request to return more results.

SELECT
actuator,
attribute,
branch,
property,
sensor,
struct
FROM aws.iotfleetwise.model_manifest_nodes
WHERE region = '{{ region }}' -- required
;