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: