Interface CfnDecoderManifest.ObdSignalDecoderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDecoderManifest.ObdSignalDecoderProperty.Jsii$Proxy
- Enclosing class:
CfnDecoderManifest
@Stability(Stable)
public static interface CfnDecoderManifest.ObdSignalDecoderProperty
extends software.amazon.jsii.JsiiSerializable
A list of information about signal decoders.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotfleetwise.*;
ObdSignalDecoderProperty obdSignalDecoderProperty = ObdSignalDecoderProperty.builder()
.fullyQualifiedName("fullyQualifiedName")
.interfaceId("interfaceId")
.obdSignal(ObdSignalProperty.builder()
.byteLength("byteLength")
.offset("offset")
.pid("pid")
.pidResponseLength("pidResponseLength")
.scaling("scaling")
.serviceMode("serviceMode")
.startByte("startByte")
// the properties below are optional
.bitMaskLength("bitMaskLength")
.bitRightShift("bitRightShift")
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDecoderManifest.ObdSignalDecoderPropertystatic final classAn implementation forCfnDecoderManifest.ObdSignalDecoderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFullyQualifiedName
- See Also:
-
getInterfaceId
- See Also:
-
getObdSignal
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.- See Also:
-
getType
- See Also:
-
builder
-