aws-cdk-lib.aws_sagemaker.CfnDeviceProps

interface CfnDeviceProps

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnDeviceProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDeviceProps
Javasoftware.amazon.awscdk.services.sagemaker.CfnDeviceProps
Pythonaws_cdk.aws_sagemaker.CfnDeviceProps
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
deviceFleetNamestringThe name of the fleet the device belongs to.
device?IResolvable | DevicePropertyEdge device you want to create.
tags?CfnTag[]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 | DeviceProperty (optional)

Edge device you want to create.


tags?

Type: CfnTag[] (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.