Interface CfnDecoderManifest.CanSignalDecoderProperty

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

@Stability(Stable) public static interface CfnDecoderManifest.CanSignalDecoderProperty extends software.amazon.jsii.JsiiSerializable
Information about signal decoder using the Controller Area Network (CAN) protocol.

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.*;
 CanSignalDecoderProperty canSignalDecoderProperty = CanSignalDecoderProperty.builder()
         .canSignal(CanSignalProperty.builder()
                 .factor("factor")
                 .isBigEndian("isBigEndian")
                 .isSigned("isSigned")
                 .length("length")
                 .messageId("messageId")
                 .offset("offset")
                 .startBit("startBit")
                 // the properties below are optional
                 .name("name")
                 .build())
         .fullyQualifiedName("fullyQualifiedName")
         .interfaceId("interfaceId")
         .type("type")
         .build();
 

See Also: