Interface CfnModelManifestProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelManifestProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.857Z")
@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();
-
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. -
getSignalCatalogArn
The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model. -
getDescription
(Optional) A brief description of the vehicle model. -
getNodes
(Optional) A list of nodes, which are a general abstraction of signals. -
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. -
getTags
(Optional) Metadata that can be used to manage the vehicle model. -
builder
- Returns:
- a
CfnModelManifestProps.Builder
ofCfnModelManifestProps
-