Interface CfnModelManifestMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelManifestMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.409Z")
@Stability(Stable)
public interface CfnModelManifestMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnModelManifestPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.*;
CfnModelManifestMixinProps cfnModelManifestMixinProps = CfnModelManifestMixinProps.builder()
.description("description")
.name("name")
.nodes(List.of("nodes"))
.signalCatalogArn("signalCatalogArn")
.status("status")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelManifestMixinPropsstatic final classAn implementation forCfnModelManifestMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA brief description of the vehicle model.default StringgetName()The name of the vehicle model.getNodes()A list of nodes, which are a general abstraction of signals.default StringThe Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.default StringThe state of the vehicle model.getTags()Metadata that can be used to manage the vehicle model.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A brief description of the vehicle model.- See Also:
-
getName
The name of the vehicle model.- See Also:
-
getNodes
A list of nodes, which are a general abstraction of signals.- See Also:
-
getSignalCatalogArn
The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.- See Also:
-
getStatus
The state of the vehicle model.If the status is
ACTIVE, the vehicle model can't be edited. If the status isDRAFT, you can edit the vehicle model.Default: - "DRAFT"
- See Also:
-
getTags
Metadata that can be used to manage the vehicle model.- See Also:
-
builder
- Returns:
- a
CfnModelManifestMixinProps.BuilderofCfnModelManifestMixinProps
-