interface CfnDeviceProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnDeviceProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDeviceProps |
![]() | software.amazon.awscdk.services.sagemaker.CfnDeviceProps |
![]() | aws_cdk.aws_sagemaker.CfnDeviceProps |
![]() | aws-cdk-lib » aws_sagemaker » CfnDeviceProps |
Properties for defining a CfnDevice
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-device.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
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.