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: