Skip to main content

decoder_manifest_network_interfaces

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

Overview

Namedecoder_manifest_network_interfaces
TypeResource
Idaws.iotfleetwise.decoder_manifest_network_interfaces

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
can_interfaceobjectInformation about a network interface specified by the Controller Area Network (CAN) protocol.
custom_decoding_interfaceobjectInformation about a custom network interface.
interface_idstringThe ID of the network interface. (pattern: <code>[-a-zA-Z0-9_.]+</code>)
obd_interfaceobjectInformation about a network interface specified by 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_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOM_DECODING_INTERFACE)
vehicle_middlewareobjectThe vehicle middleware defined as a type of network interface. Examples of vehicle middleware include ROS2 and SOME/IP.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_decoder_manifest_network_interfacesselectregionLists the network interfaces 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

Lists the network interfaces specified in a decoder manifest. This API operation uses pagination. Specify the nextToken parameter in the request to return more results.

SELECT
can_interface,
custom_decoding_interface,
interface_id,
obd_interface,
type_,
vehicle_middleware
FROM aws.iotfleetwise.decoder_manifest_network_interfaces
WHERE region = '{{ region }}' -- required
;