@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.866Z") @Stability(value=Stable) public interface CfnDeviceProps 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.*;
CfnDeviceProps cfnDeviceProps = CfnDeviceProps.builder()
.deviceFleetName("deviceFleetName")
// the properties below are optional
.device(DeviceProperty.builder()
.deviceName("deviceName")
// the properties below are optional
.description("description")
.iotThingName("iotThingName")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeviceProps.Builder
A builder for
CfnDeviceProps |
static class |
CfnDeviceProps.Jsii$Proxy
An implementation for
CfnDeviceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeviceProps.Builder |
builder() |
default Object |
getDevice()
Edge device you want to create.
|
String |
getDeviceFleetName()
The name of the fleet the device belongs to.
|
default List<CfnTag> |
getTags()
An array of key-value pairs that contain metadata to help you categorize and organize your devices.
|
@Stability(value=Stable) @NotNull String getDeviceFleetName()
@Stability(value=Stable) @Nullable default Object getDevice()
@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 CfnDeviceProps.Builder builder()
CfnDeviceProps.Builder of CfnDevicePropsCopyright © 2022. All rights reserved.