interface ObdNetworkInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.ObdNetworkInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_ObdNetworkInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.ObdNetworkInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.ObdNetworkInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » ObdNetworkInterfaceProperty |
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const obdNetworkInterfaceProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.ObdNetworkInterfaceProperty = {
interfaceId: 'interfaceId',
obdInterface: {
dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
hasTransmissionEcu: 'hasTransmissionEcu',
name: 'name',
obdStandard: 'obdStandard',
pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
requestMessageId: 'requestMessageId',
useExtendedIds: 'useExtendedIds',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| interface | string | The ID of the network interface. |
| obd | IResolvable | Obd | Information about a network interface specified by the On-board diagnostic (OBD) II protocol. |
| type? | string | The network protocol for the vehicle. |
interfaceId?
Type:
string
(optional)
The ID of the network interface.
obdInterface?
Type:
IResolvable | Obd
(optional)
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
type?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript