interface CfnDeviceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDeviceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDeviceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDeviceMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDeviceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const cfnDeviceMixinProps: sagemaker_mixins.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