interface ObdInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.ObdInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_ObdInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.ObdInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.ObdInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » ObdInterfaceProperty |
A network interface that specifies the On-board diagnostic (OBD) II network 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 obdInterfaceProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.ObdInterfaceProperty = {
dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
hasTransmissionEcu: 'hasTransmissionEcu',
name: 'name',
obdStandard: 'obdStandard',
pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
requestMessageId: 'requestMessageId',
useExtendedIds: 'useExtendedIds',
};
Properties
| Name | Type | Description |
|---|---|---|
| dtc | string | The maximum number message requests per diagnostic trouble code per second. |
| has | string | Whether the vehicle has a transmission control module (TCM). |
| name? | string | The name of the interface. |
| obd | string | The standard OBD II PID. |
| pid | string | The maximum number message requests per second. |
| request | string | The ID of the message requesting vehicle data. |
| use | string | Whether to use extended IDs in the message. |
dtcRequestIntervalSeconds?
Type:
string
(optional)
The maximum number message requests per diagnostic trouble code per second.
hasTransmissionEcu?
Type:
string
(optional)
Whether the vehicle has a transmission control module (TCM).
name?
Type:
string
(optional)
The name of the interface.
obdStandard?
Type:
string
(optional)
The standard OBD II PID.
pidRequestIntervalSeconds?
Type:
string
(optional)
The maximum number message requests per second.
requestMessageId?
Type:
string
(optional)
The ID of the message requesting vehicle data.
useExtendedIds?
Type:
string
(optional)
Whether to use extended IDs in the message.

.NET
Go
Java
Python
TypeScript