Class CfnDecoderManifest.ObdSignalDecoderProperty
A list of information about signal decoders.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ObdSignalDecoderProperty : Object, CfnDecoderManifest.IObdSignalDecoderProperty
Syntax (vb)
Public Class ObdSignalDecoderProperty
Inherits Object
Implements CfnDecoderManifest.IObdSignalDecoderProperty
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 obdSignalDecoderProperty = new ObdSignalDecoderProperty {
FullyQualifiedName = "fullyQualifiedName",
InterfaceId = "interfaceId",
ObdSignal = new ObdSignalProperty {
ByteLength = "byteLength",
Offset = "offset",
Pid = "pid",
PidResponseLength = "pidResponseLength",
Scaling = "scaling",
ServiceMode = "serviceMode",
StartByte = "startByte",
// the properties below are optional
BitMaskLength = "bitMaskLength",
BitRightShift = "bitRightShift"
},
Type = "type"
};
Synopsis
Constructors
Obd |
Properties
Fully |
The fully qualified name of a signal decoder as defined in a vehicle model. |
Interface |
The ID of a network interface that specifies what network protocol a vehicle follows. |
Obd |
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle. |
Type | The network protocol for the vehicle. |
Constructors
ObdSignalDecoderProperty()
public ObdSignalDecoderProperty()
Properties
FullyQualifiedName
The fully qualified name of a signal decoder as defined in a vehicle model.
public string FullyQualifiedName { get; set; }
Property Value
System.
Remarks
InterfaceId
The ID of a network interface that specifies what network protocol a vehicle follows.
public string InterfaceId { get; set; }
Property Value
System.
Remarks
ObdSignal
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.
public object ObdSignal { 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.