decoder_manifest_network_interfaces
Creates, updates, deletes, gets or lists a decoder_manifest_network_interfaces resource.
Overview
| Name | decoder_manifest_network_interfaces |
| Type | Resource |
| Id | aws.iotfleetwise.decoder_manifest_network_interfaces |
Fields
The following fields are returned by SELECT queries:
- list_decoder_manifest_network_interfaces
| Name | Datatype | Description |
|---|---|---|
can_interface | object | Information about a network interface specified by the Controller Area Network (CAN) protocol. |
custom_decoding_interface | object | Information about a custom network interface. |
interface_id | string | The ID of the network interface. (pattern: <code>[-a-zA-Z0-9_.]+</code>) |
obd_interface | object | Information about a network interface specified by 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_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOM_DECODING_INTERFACE) |
vehicle_middleware | object | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_decoder_manifest_network_interfaces | select | region | 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. |
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_network_interfaces
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
;