Interface CfnDeviceFleetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeviceFleetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:31.709Z")
@Stability(Stable)
public interface CfnDeviceFleetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDeviceFleetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.*;
CfnDeviceFleetMixinProps cfnDeviceFleetMixinProps = CfnDeviceFleetMixinProps.builder()
.description("description")
.deviceFleetName("deviceFleetName")
.outputConfig(EdgeOutputConfigProperty.builder()
.kmsKeyId("kmsKeyId")
.s3OutputLocation("s3OutputLocation")
.build())
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeviceFleetMixinPropsstatic final classAn implementation forCfnDeviceFleetMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description of the fleet.default StringName of the device fleet.default ObjectThe output configuration for storing sample data collected by the fleet.default StringThe 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
-
getDescription
A description of the fleet.- See Also:
-
getDeviceFleetName
Name of the device fleet.- See Also:
-
getOutputConfig
The output configuration for storing sample data collected by the fleet.Returns union: either
IResolvableorCfnDeviceFleetPropsMixin.EdgeOutputConfigProperty- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).- 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
CfnDeviceFleetMixinProps.BuilderofCfnDeviceFleetMixinProps
-