interface CfnDeviceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnDeviceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnDeviceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnDeviceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnDeviceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnDeviceMixinProps |
Properties for CfnDevicePropsMixin.
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/cfn-property-mixins';
const cfnDeviceMixinProps: sagemaker.CfnDeviceMixinProps = {
device: {
description: 'description',
deviceName: 'deviceName',
iotThingName: 'iotThingName',
},
deviceFleetName: 'deviceFleetName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| device? | IResolvable | Device | Edge device you want to create. |
| device | string | The name of the fleet the device belongs to. |
| tags? | Cfn[] | An array of key-value pairs that contain metadata to help you categorize and organize your devices. |
device?
Type:
IResolvable | Device
(optional)
Edge device you want to create.
deviceFleetName?
Type:
string
(optional)
The name of the fleet the device belongs to.
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
Go
Java
Python
TypeScript