Class CfnDecoderManifest.ObdNetworkInterfaceProperty
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
Inheritance
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ObdNetworkInterfaceProperty : Object, CfnDecoderManifest.IObdNetworkInterfaceProperty
Syntax (vb)
Public Class ObdNetworkInterfaceProperty
Inherits Object
Implements CfnDecoderManifest.IObdNetworkInterfaceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetWise;
var obdNetworkInterfaceProperty = new ObdNetworkInterfaceProperty {
InterfaceId = "interfaceId",
ObdInterface = new ObdInterfaceProperty {
Name = "name",
RequestMessageId = "requestMessageId",
// the properties below are optional
DtcRequestIntervalSeconds = "dtcRequestIntervalSeconds",
HasTransmissionEcu = "hasTransmissionEcu",
ObdStandard = "obdStandard",
PidRequestIntervalSeconds = "pidRequestIntervalSeconds",
UseExtendedIds = "useExtendedIds"
},
Type = "type"
};
Synopsis
Constructors
Obd |
Properties
Interface |
The ID of the network interface. |
Obd |
Information about a network interface specified by the On-board diagnostic (OBD) II protocol. |
Type | The network protocol for the vehicle. |
Constructors
ObdNetworkInterfaceProperty()
public ObdNetworkInterfaceProperty()
Properties
InterfaceId
The ID of the network interface.
public string InterfaceId { get; set; }
Property Value
System.
Remarks
ObdInterface
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
public object ObdInterface { get; set; }
Property Value
System.
Remarks
Type
The network protocol for the vehicle.
public string Type { get; set; }
Property Value
System.
Remarks
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.