Class CfnDecoderManifest.ObdSignalDecoderProperty
A list of information about signal decoders.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDecoderManifest.ObdSignalDecoderProperty : CfnDecoderManifest.IObdSignalDecoderProperty
Syntax (vb)
Public Class CfnDecoderManifest.ObdSignalDecoderProperty 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",
IsSigned = "isSigned",
SignalValueType = "signalValueType"
},
Type = "type"
};
Synopsis
Constructors
ObdSignalDecoderProperty() | A list of information about signal decoders. |
Properties
FullyQualifiedName | The fully qualified name of a signal decoder as defined in a vehicle model. |
InterfaceId | The ID of a network interface that specifies what network protocol a vehicle follows. |
ObdSignal | Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle. |
Type | The network protocol for the vehicle. |
Constructors
ObdSignalDecoderProperty()
A list of information about signal decoders.
public ObdSignalDecoderProperty()
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",
IsSigned = "isSigned",
SignalValueType = "signalValueType"
},
Type = "type"
};
Properties
FullyQualifiedName
The fully qualified name of a signal decoder as defined in a vehicle model.
public string FullyQualifiedName { get; set; }
Property Value
Remarks
InterfaceId
The ID of a network interface that specifies what network protocol a vehicle follows.
public string InterfaceId { get; set; }
Property Value
Remarks
ObdSignal
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.
public object ObdSignal { 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.