Class CfnModelManifest

java.lang.Object
software.amazon.jsii.JsiiObject
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.856Z") @Stability(Stable) public class CfnModelManifest extends CfnResource implements IInspectable
A CloudFormation AWS::IoTFleetWise::ModelManifest.

Creates a vehicle model (model manifest) that specifies signals (attributes, branches, sensors, and actuators).

For more information, see Vehicle models in the AWS IoT FleetWise Developer Guide .

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.*;
 CfnModelManifest cfnModelManifest = CfnModelManifest.Builder.create(this, "MyCfnModelManifest")
         .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();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnModelManifest

      protected CfnModelManifest(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnModelManifest

      protected CfnModelManifest(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnModelManifest

      @Stability(Stable) public CfnModelManifest(@NotNull Construct scope, @NotNull String id, @NotNull CfnModelManifestProps props)
      Create a new AWS::IoTFleetWise::ModelManifest.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the vehicle model.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
    • getAttrLastModificationTime

      @Stability(Stable) @NotNull public String getAttrLastModificationTime()
      The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      (Optional) Metadata that can be used to manage the vehicle model.
    • getName

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

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the vehicle model.
    • getSignalCatalogArn

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

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

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

      @Stability(Stable) public void setDescription(@Nullable String value)
      (Optional) A brief description of the vehicle model.
    • getNodes

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

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

      @Stability(Stable) @Nullable public 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.

    • setStatus

      @Stability(Stable) public void setStatus(@Nullable String value)
      (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.