interface NetworkInterfacesItemsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifest.NetworkInterfacesItemsProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest.NetworkInterfacesItemsProperty |
Python | aws_cdk.aws_iotfleetwise.CfnDecoderManifest.NetworkInterfacesItemsProperty |
TypeScript | @aws-cdk/aws-iotfleetwise » CfnDecoderManifest » NetworkInterfacesItemsProperty |
(Optional) A list of information about available network interfaces.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
const networkInterfacesItemsProperty: iotfleetwise.CfnDecoderManifest.NetworkInterfacesItemsProperty = {
interfaceId: 'interfaceId',
type: 'type',
// the properties below are optional
canInterface: {
name: 'name',
// the properties below are optional
protocolName: 'protocolName',
protocolVersion: 'protocolVersion',
},
obdInterface: {
name: 'name',
requestMessageId: 'requestMessageId',
// the properties below are optional
dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
hasTransmissionEcu: 'hasTransmissionEcu',
obdStandard: 'obdStandard',
pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
useExtendedIds: 'useExtendedIds',
},
};
Properties
Name | Type | Description |
---|---|---|
interface | string | The ID of the network interface. |
type | string | The network protocol for the vehicle. |
can | IResolvable | Can | (Optional) Information about a network interface specified by the Controller Area Network (CAN) protocol. |
obd | IResolvable | Obd | (Optional) Information about a network interface specified by the On-board diagnostic (OBD) II protocol. |
interfaceId
Type:
string
The ID of the network interface.
type
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.
canInterface?
Type:
IResolvable
|
Can
(optional)
(Optional) Information about a network interface specified by the Controller Area Network (CAN) protocol.
obdInterface?
Type:
IResolvable
|
Obd
(optional)
(Optional) Information about a network interface specified by the On-board diagnostic (OBD) II protocol.