@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.801Z") @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()
`AWS::SageMaker::DeviceFleet.Description`.
|
String |
getDeviceFleetName()
`AWS::SageMaker::DeviceFleet.DeviceFleetName`.
|
Object |
getOutputConfig()
`AWS::SageMaker::DeviceFleet.OutputConfig`.
|
String |
getRoleArn()
`AWS::SageMaker::DeviceFleet.RoleArn`.
|
default List<CfnTag> |
getTags()
`AWS::SageMaker::DeviceFleet.Tags`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @NotNull String getDeviceFleetName()
@Stability(value=Stable) @NotNull Object getOutputConfig()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDeviceFleetProps.Builder builder()
CfnDeviceFleetProps.Builder of CfnDeviceFleetPropsCopyright © 2021. All rights reserved.