Interface CfnDevice.DeviceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDevice.DeviceProperty.Jsii$Proxy
- Enclosing class:
CfnDevice
@Stability(Stable)
public static interface CfnDevice.DeviceProperty
extends software.amazon.jsii.JsiiSerializable
Information of a particular device.
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.*; DeviceProperty deviceProperty = DeviceProperty.builder() .deviceName("deviceName") // the properties below are optional .description("description") .iotThingName("iotThingName") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDevice.DeviceProperty
static final class
An implementation forCfnDevice.DeviceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeviceName
The name of the device.- See Also:
-
getDescription
Description of the device.- See Also:
-
getIotThingName
AWS Internet of Things (IoT) object name.- See Also:
-
builder
- Returns:
- a
CfnDevice.DeviceProperty.Builder
ofCfnDevice.DeviceProperty
-