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")
.signalValueType("signalValueType")
.build())
.fullyQualifiedName("fullyQualifiedName")
.interfaceId("interfaceId")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDecoderManifest.CanSignalDecoderPropertystatic final classAn implementation forCfnDecoderManifest.CanSignalDecoderProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Information about a single controller area network (CAN) signal and the messages it receives and transmits.The fully qualified name of a signal decoder as defined in a vehicle model.The ID of a network interface that specifies what network protocol a vehicle follows.getType()The network protocol for the vehicle.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanSignal
Information about a single controller area network (CAN) signal and the messages it receives and transmits.Returns union: either
IResolvableorCfnDecoderManifest.CanSignalProperty- See Also:
-
getFullyQualifiedName
The fully qualified name of a signal decoder as defined in a vehicle model.- See Also:
-
getInterfaceId
The ID of a network interface that specifies what network protocol a vehicle follows.- See Also:
-
getType
The network protocol for the vehicle.For example,
CAN_SIGNALspecifies a protocol that defines how data is communicated between electronic control units (ECUs).OBD_SIGNALspecifies a protocol that defines how self-diagnostic data is communicated between ECUs.- See Also:
-
builder
-