interface ObdNetworkInterfaceProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifest.ObdNetworkInterfaceProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnDecoderManifest_ObdNetworkInterfaceProperty | 
  Java | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest.ObdNetworkInterfaceProperty | 
  Python | aws_cdk.aws_iotfleetwise.CfnDecoderManifest.ObdNetworkInterfaceProperty | 
  TypeScript  | aws-cdk-lib » aws_iotfleetwise » CfnDecoderManifest » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const obdNetworkInterfaceProperty: iotfleetwise.CfnDecoderManifest.ObdNetworkInterfaceProperty = {
  interfaceId: 'interfaceId',
  obdInterface: {
    name: 'name',
    requestMessageId: 'requestMessageId',
    // the properties below are optional
    dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
    hasTransmissionEcu: 'hasTransmissionEcu',
    obdStandard: 'obdStandard',
    pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
    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
The ID of the network interface.
obdInterface
Type:
IResolvable | Obd
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
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.

 .NET
 Go
 Java
 Python
 TypeScript