Interface CfnDecoderManifest.CanSignalProperty

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

@Stability(Stable) public static interface CfnDecoderManifest.CanSignalProperty extends software.amazon.jsii.JsiiSerializable
(Optional) Information about a single controller area network (CAN) signal and the messages it receives and transmits.

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

See Also: