Interface CfnDeviceFleetProps

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

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

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.sagemaker.*;
 CfnDeviceFleetProps cfnDeviceFleetProps = CfnDeviceFleetProps.builder()
         .deviceFleetName("deviceFleetName")
         .outputConfig(EdgeOutputConfigProperty.builder()
                 .s3OutputLocation("s3OutputLocation")
                 // the properties below are optional
                 .kmsKeyId("kmsKeyId")
                 .build())
         .roleArn("roleArn")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getDeviceFleetName

      @Stability(Stable) @NotNull String getDeviceFleetName()
      Name of the device fleet.
    • getOutputConfig

      @Stability(Stable) @NotNull Object getOutputConfig()
      The output configuration for storing sample data collected by the fleet.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
    • getDescription

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

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.

      Each tag consists of a key and a value, both of which you define.

    • builder

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