Interface CfnDecoderManifestProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDecoderManifestProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.852Z")
@Stability(Stable)
public interface CfnDecoderManifestProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDecoderManifest
.
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.*; CfnDecoderManifestProps cfnDecoderManifestProps = CfnDecoderManifestProps.builder() .modelManifestArn("modelManifestArn") .name("name") // the properties below are optional .description("description") .networkInterfaces(List.of(NetworkInterfacesItemsProperty.builder() .interfaceId("interfaceId") .type("type") // the properties below are optional .canInterface(CanInterfaceProperty.builder() .name("name") // the properties below are optional .protocolName("protocolName") .protocolVersion("protocolVersion") .build()) .obdInterface(ObdInterfaceProperty.builder() .name("name") .requestMessageId("requestMessageId") // the properties below are optional .dtcRequestIntervalSeconds("dtcRequestIntervalSeconds") .hasTransmissionEcu("hasTransmissionEcu") .obdStandard("obdStandard") .pidRequestIntervalSeconds("pidRequestIntervalSeconds") .useExtendedIds("useExtendedIds") .build()) .build())) .signalDecoders(List.of(SignalDecodersItemsProperty.builder() .fullyQualifiedName("fullyQualifiedName") .interfaceId("interfaceId") .type("type") // the properties below are optional .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()) .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()) .build())) .status("status") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDecoderManifestProps
static final class
An implementation forCfnDecoderManifestProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
(Optional) A brief description of the decoder manifest.The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.getName()
The name of the decoder manifest.default Object
(Optional) A list of information about available network interfaces.default Object
(Optional) A list of information about signal decoders.default String
(Optional) The state of the decoder manifest.getTags()
(Optional) Metadata that can be used to manage the decoder manifest.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModelManifestArn
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest. -
getName
The name of the decoder manifest. -
getDescription
(Optional) A brief description of the decoder manifest. -
getNetworkInterfaces
(Optional) A list of information about available network interfaces. -
getSignalDecoders
(Optional) A list of information about signal decoders. -
getStatus
(Optional) The state of the decoder manifest.If the status is
ACTIVE
, the decoder manifest can't be edited. If the status is markedDRAFT
, you can edit the decoder manifest. -
getTags
(Optional) Metadata that can be used to manage the decoder manifest. -
builder
- Returns:
- a
CfnDecoderManifestProps.Builder
ofCfnDecoderManifestProps
-