Class CfnDecoderManifest
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.844Z")
@Stability(Stable)
public class CfnDecoderManifest
extends CfnResource
implements IInspectable
A CloudFormation
AWS::IoTFleetWise::DecoderManifest.
Creates the decoder manifest associated with a model manifest. To create a decoder manifest, the following must be true:
- Every signal decoder has a unique name.
- Each signal decoder is associated with a network interface.
- Each network interface has a unique ID.
- The signal decoders are specified in the model manifest.
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.*;
CfnDecoderManifest cfnDecoderManifest = CfnDecoderManifest.Builder.create(this, "MyCfnDecoderManifest")
.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
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnDecoderManifest.static interfaceA single controller area network (CAN) device interface.static interface(Optional) Information about a single controller area network (CAN) signal and the messages it receives and transmits.static interface(Optional) A list of information about available network interfaces.static interfaceA network interface that specifies the On-board diagnostic (OBD) II network protocol.static interfaceInformation about signal messages using the on-board diagnostics (OBD) II protocol in a vehicle.static interfaceInformation about a signal decoder.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCfnDecoderManifest(Construct scope, String id, CfnDecoderManifestProps props) Create a newAWS::IoTFleetWise::DecoderManifest.protectedCfnDecoderManifest(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDecoderManifest(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the decoder manifest.The time the decoder manifest was created in seconds since epoch (January 1, 1970 at midnight UTC time).The time the decoder manifest was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).(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.(Optional) A list of information about available network interfaces.(Optional) A list of information about signal decoders.(Optional) The state of the decoder manifest.getTags()(Optional) Metadata that can be used to manage the decoder manifest.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetDescription(String value) (Optional) A brief description of the decoder manifest.voidsetModelManifestArn(String value) The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.voidThe name of the decoder manifest.voidsetNetworkInterfaces(List<Object> value) (Optional) A list of information about available network interfaces.voidsetNetworkInterfaces(IResolvable value) (Optional) A list of information about available network interfaces.voidsetSignalDecoders(List<Object> value) (Optional) A list of information about signal decoders.voidsetSignalDecoders(IResolvable value) (Optional) A list of information about signal decoders.void(Optional) The state of the decoder manifest.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDecoderManifest
protected CfnDecoderManifest(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDecoderManifest
protected CfnDecoderManifest(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDecoderManifest
@Stability(Stable) public CfnDecoderManifest(@NotNull Construct scope, @NotNull String id, @NotNull CfnDecoderManifestProps props) Create a newAWS::IoTFleetWise::DecoderManifest.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the decoder manifest. -
getAttrCreationTime
The time the decoder manifest was created in seconds since epoch (January 1, 1970 at midnight UTC time). -
getAttrLastModificationTime
The time the decoder manifest was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
(Optional) Metadata that can be used to manage the decoder manifest. -
getModelManifestArn
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest. -
setModelManifestArn
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest. -
getName
The name of the decoder manifest. -
setName
The name of the decoder manifest. -
getDescription
(Optional) A brief description of the decoder manifest. -
setDescription
(Optional) A brief description of the decoder manifest. -
getNetworkInterfaces
(Optional) A list of information about available network interfaces. -
setNetworkInterfaces
(Optional) A list of information about available network interfaces. -
setNetworkInterfaces
(Optional) A list of information about available network interfaces. -
getSignalDecoders
(Optional) A list of information about signal decoders. -
setSignalDecoders
(Optional) A list of information about signal decoders. -
setSignalDecoders
(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. -
setStatus
(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.
-