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();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the vehicle model.
    • getSignalCatalogArn

      @Stability(Stable) @NotNull String getSignalCatalogArn()
      The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      (Optional) A brief description of the vehicle model.
    • getNodes

      @Stability(Stable) @Nullable default List<String> getNodes()
      (Optional) A list of nodes, which are a general abstraction of signals.
    • getStatus

      @Stability(Stable) @Nullable default String getStatus()
      (Optional) The state of the vehicle model.

      If the status is ACTIVE , the vehicle model can't be edited. If the status is DRAFT , you can edit the vehicle model.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      (Optional) Metadata that can be used to manage the vehicle model.
    • builder

      @Stability(Stable) static CfnModelManifestProps.Builder builder()
      Returns:
      a CfnModelManifestProps.Builder of CfnModelManifestProps