decoder_manifest_signals
Creates, updates, deletes, gets or lists a decoder_manifest_signals resource.
Overview
| Name | decoder_manifest_signals |
| Type | Resource |
| Id | aws.iotfleetwise.decoder_manifest_signals |
Fields
The following fields are returned by SELECT queries:
- list_decoder_manifest_signals
| Name | Datatype | Description |
|---|---|---|
can_signal | object | Information about signal decoder using the Controller Area Network (CAN) protocol. |
custom_decoding_signal | object | Information about a custom signal decoder. Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see Amazon Web Services Region and feature availability in the Amazon Web Services IoT FleetWise Developer Guide. |
fully_qualified_name | string | The fully qualified name of a signal decoder as defined in a vehicle model. (pattern: <code>[a-zA-Z0-9_.]+</code>) |
interface_id | string | The ID of a network interface that specifies what network protocol a vehicle follows. (pattern: <code>[-a-zA-Z0-9_.]+</code>) |
message_signal | object | The decoding information for a specific message which supports higher order data types. |
obd_signal | object | Information about signal decoder using the on-board diagnostic (OBD) II protocol. |
type_ | string | The network protocol for the vehicle. For example, CAN_SIGNAL specifies a protocol that defines how data is communicated between electronic control units (ECUs). OBD_SIGNAL specifies a protocol that defines how self-diagnostic data is communicated between ECUs. (CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOM_DECODING_SIGNAL) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_decoder_manifest_signals | select | region | A list of information about signal decoders specified in a decoder 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_decoder_manifest_signals
A list of information about signal decoders specified in a decoder manifest. This API operation uses pagination. Specify the nextToken parameter in the request to return more results.
SELECT
can_signal,
custom_decoding_signal,
fully_qualified_name,
interface_id,
message_signal,
obd_signal,
type_
FROM aws.iotfleetwise.decoder_manifest_signals
WHERE region = '{{ region }}' -- required
;