interface CfnDeviceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDeviceProps |
Java | software.amazon.awscdk.services.sagemaker.CfnDeviceProps |
Python | aws_cdk.aws_sagemaker.CfnDeviceProps |
TypeScript | @aws-cdk/aws-sagemaker » CfnDeviceProps |
Properties for defining a CfnDevice.
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 cfnDeviceProps: sagemaker.CfnDeviceProps = {
deviceFleetName: 'deviceFleetName',
// the properties below are optional
device: {
deviceName: 'deviceName',
// the properties below are optional
description: 'description',
iotThingName: 'iotThingName',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The name of the fleet the device belongs to. |
| device? | IResolvable | Device | Edge device you want to create. |
| tags? | Cfn[] | An array of key-value pairs that contain metadata to help you categorize and organize your devices. |
deviceFleetName
Type:
string
The name of the fleet the device belongs to.
device?
Type:
IResolvable | Device
(optional)
Edge device you want to create.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs that contain metadata to help you categorize and organize your devices.
Each tag consists of a key and a value, both of which you define.

.NET
Java
Python
TypeScript