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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeviceFleetProps
static final class
An implementation forCfnDeviceFleetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDeviceFleetProps.Builder
builder()
default String
A description of the fleet.Name of the device fleet.The output configuration for storing sample data collected by the fleet.The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).getTags()
An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeviceFleetName
Name of the device fleet. -
getOutputConfig
The output configuration for storing sample data collected by the fleet. -
getRoleArn
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT). -
getDescription
A description of the fleet. -
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
- Returns:
- a
CfnDeviceFleetProps.Builder
ofCfnDeviceFleetProps
-