@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.866Z") @Stability(value=Stable) public interface CfnDeviceFleetProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeviceFleetProps.Builder
A builder for
CfnDeviceFleetProps |
static class |
CfnDeviceFleetProps.Jsii$Proxy
An implementation for
CfnDeviceFleetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeviceFleetProps.Builder |
builder() |
default String |
getDescription()
A description of the fleet.
|
String |
getDeviceFleetName()
Name of the device fleet.
|
Object |
getOutputConfig()
The output configuration for storing sample data collected by the fleet.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
|
default List<CfnTag> |
getTags()
An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.
|
@Stability(value=Stable) @NotNull String getDeviceFleetName()
@Stability(value=Stable) @NotNull Object getOutputConfig()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
Each tag consists of a key and a value, both of which you define.
@Stability(value=Stable) static CfnDeviceFleetProps.Builder builder()
CfnDeviceFleetProps.Builder of CfnDeviceFleetPropsCopyright © 2022. All rights reserved.