interface ObdInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnDecoderManifestPropsMixin.ObdInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnDecoderManifestPropsMixin_ObdInterfaceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnDecoderManifestPropsMixin.ObdInterfaceProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnDecoderManifestPropsMixin.ObdInterfaceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » 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 { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const obdInterfaceProperty: iotfleetwise.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