Interface CfnDecoderManifest.ObdSignalProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDecoderManifest.ObdSignalProperty.Jsii$Proxy
Enclosing class:
CfnDecoderManifest

@Stability(Stable) public static interface CfnDecoderManifest.ObdSignalProperty extends software.amazon.jsii.JsiiSerializable
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.

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.*;
 ObdSignalProperty obdSignalProperty = 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();
 

See Also: