Interface CfnFleetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFleetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.855Z") @Stability(Stable) public interface CfnFleetProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnFleet.

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.*;
 CfnFleetProps cfnFleetProps = CfnFleetProps.builder()
         .id("id")
         .signalCatalogArn("signalCatalogArn")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getId

      @Stability(Stable) @NotNull String getId()
      The unique ID of the fleet.
    • getSignalCatalogArn

      @Stability(Stable) @NotNull String getSignalCatalogArn()
      The ARN of the signal catalog associated with the fleet.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      (Optional) A brief description of the fleet.
    • getTags

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

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