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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDecoderManifest.ObdSignalDecoderProperty
static final class
An implementation forCfnDecoderManifest.ObdSignalDecoderProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
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.Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.getType()
The network protocol for the vehicle.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getObdSignal
Information about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.- See Also:
-
getType
The network protocol for the vehicle.For example,
CAN_SIGNAL
specifies a protocol that defines how data is communicated between electronic control units (ECUs).OBD_SIGNAL
specifies a protocol that defines how self-diagnostic data is communicated between ECUs.- See Also:
-
builder
-