Interface CfnModelManifestProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelManifestProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:03.216Z")
@Stability(Stable)
public interface CfnModelManifestProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnModelManifest
.
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.*; CfnModelManifestProps cfnModelManifestProps = CfnModelManifestProps.builder() .name("name") .signalCatalogArn("signalCatalogArn") // the properties below are optional .description("description") .nodes(List.of("nodes")) .status("status") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelManifestProps
static final class
An implementation forCfnModelManifestProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
(Optional) A brief description of the vehicle model.getName()
The name of the vehicle model.getNodes()
(Optional) A list of nodes, which are a general abstraction of signals.The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.default String
(Optional) The state of the vehicle model.getTags()
(Optional) Metadata that can be used to manage the vehicle model.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the vehicle model.- See Also:
-
getSignalCatalogArn
The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.- See Also:
-
getDescription
(Optional) A brief description of the vehicle model.- See Also:
-
getNodes
(Optional) A list of nodes, which are a general abstraction of signals.- See Also:
-
getStatus
(Optional) 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
(Optional) Metadata that can be used to manage the vehicle model.- See Also:
-
builder
- Returns:
- a
CfnModelManifestProps.Builder
ofCfnModelManifestProps
-