Skip to main content

decoder_manifest_signals

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

Overview

Namedecoder_manifest_signals
TypeResource
Idaws.iotfleetwise.decoder_manifest_signals

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
can_signalobjectInformation about signal decoder using the Controller Area Network (CAN) protocol.
custom_decoding_signalobjectInformation 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_namestringThe fully qualified name of a signal decoder as defined in a vehicle model. (pattern: <code>[a-zA-Z0-9_.]+</code>)
interface_idstringThe ID of a network interface that specifies what network protocol a vehicle follows. (pattern: <code>[-a-zA-Z0-9_.]+</code>)
message_signalobjectThe decoding information for a specific message which supports higher order data types.
obd_signalobjectInformation about signal decoder using the on-board diagnostic (OBD) II protocol.
type_stringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_decoder_manifest_signalsselectregionA 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;