interface DeviceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDevicePropsMixin.DeviceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDevicePropsMixin_DeviceProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDevicePropsMixin.DeviceProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDevicePropsMixin.DeviceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDevicePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const deviceProperty: sagemaker_mixins.CfnDevicePropsMixin.DeviceProperty = {
description: 'description',
deviceName: 'deviceName',
iotThingName: 'iotThingName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Description of the device. |
| device | string | The name of the device. |
| iot | string | AWS Internet of Things (IoT) object name. |
description?
Type:
string
(optional)
Description of the device.
deviceName?
Type:
string
(optional)
The name of the device.
iotThingName?
Type:
string
(optional)
AWS Internet of Things (IoT) object name.

.NET
Go
Java
Python
TypeScript