Class CfnDecoderManifest.ObdNetworkInterfaceProperty
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDecoderManifest.ObdNetworkInterfaceProperty : CfnDecoderManifest.IObdNetworkInterfaceProperty
Syntax (vb)
Public Class CfnDecoderManifest.ObdNetworkInterfaceProperty 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
ObdNetworkInterfaceProperty() | Information about a network interface specified by the On-board diagnostic (OBD) II protocol. |
Properties
InterfaceId | The ID of the network interface. |
ObdInterface | Information about a network interface specified by the On-board diagnostic (OBD) II protocol. |
Type | The network protocol for the vehicle. |
Constructors
ObdNetworkInterfaceProperty()
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
public ObdNetworkInterfaceProperty()
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"
};
Properties
InterfaceId
The ID of the network interface.
public string InterfaceId { get; set; }
Property Value
Remarks
ObdInterface
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
public object ObdInterface { get; set; }
Property Value
Remarks
Type
The network protocol for the vehicle.
public string Type { get; set; }
Property Value
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.