interface DeviceProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDevice.DeviceProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnDevice.DeviceProperty |
Python | aws_cdk.aws_sagemaker.CfnDevice.DeviceProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnDevice » DeviceProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const deviceProperty: sagemaker.CfnDevice.DeviceProperty = {
deviceName: 'deviceName',
// the properties below are optional
description: 'description',
iotThingName: 'iotThingName',
};
Properties
Name | Type | Description |
---|---|---|
device | string | The name of the device. |
description? | string | Description of the device. |
iot | string | AWS Internet of Things (IoT) object name. |
deviceName
Type:
string
The name of the device.
description?
Type:
string
(optional)
Description of the device.
iotThingName?
Type:
string
(optional)
AWS Internet of Things (IoT) object name.