model_manifest_nodes
Creates, updates, deletes, gets or lists a model_manifest_nodes resource.
Overview
| Name | model_manifest_nodes |
| Type | Resource |
| Id | aws.iotfleetwise.model_manifest_nodes |
Fields
The following fields are returned by SELECT queries:
- list_model_manifest_nodes
| Name | Datatype | Description |
|---|---|---|
actuator | object | Information about a node specified as an actuator. An actuator is a digital representation of a vehicle device. |
attribute | object | Information about a node specified as an attribute. An attribute represents static information about a vehicle. |
branch | object | Information about a node specified as a branch. A group of signals that are defined in a hierarchical structure. |
property | object | Represents a member of the complex data structure. The datatype of the property can be either primitive or another struct. |
sensor | object | An input component that reports the environmental condition of a vehicle. You can collect data about fluid levels, temperatures, vibrations, or battery voltage from sensors. |
struct | object | Represents a complex or higher-order data structure. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_model_manifest_nodes | select | region | 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. |
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
- list_model_manifest_nodes
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
;