Interface CfnDeviceFleetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeviceFleetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:47.956Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeviceFleetPropsstatic final classAn implementation forCfnDeviceFleetProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDeviceFleetProps.Builderbuilder()default StringA 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.- See Also:
-
getOutputConfig
The output configuration for storing sample data collected by the fleet.Returns union: either
IResolvableorCfnDeviceFleet.EdgeOutputConfigProperty- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).- See Also:
-
getDescription
A description of the fleet.- See Also:
-
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.
- See Also:
-
builder
- Returns:
- a
CfnDeviceFleetProps.BuilderofCfnDeviceFleetProps
-