interface CfnDeviceFleetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDeviceFleetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDeviceFleetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDeviceFleetMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDeviceFleetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDeviceFleetMixinProps |
Properties for CfnDeviceFleetPropsMixin.
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 cfnDeviceFleetMixinProps: sagemaker_mixins.CfnDeviceFleetMixinProps = {
description: 'description',
deviceFleetName: 'deviceFleetName',
outputConfig: {
kmsKeyId: 'kmsKeyId',
s3OutputLocation: 's3OutputLocation',
},
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the fleet. |
| device | string | Name of the device fleet. |
| output | IResolvable | Edge | The output configuration for storing sample data collected by the fleet. |
| role | string | The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT). |
| tags? | Cfn[] | An array of key-value pairs that contain metadata to help you categorize and organize your device fleets. |
description?
Type:
string
(optional)
A description of the fleet.
deviceFleetName?
Type:
string
(optional)
Name of the device fleet.
outputConfig?
Type:
IResolvable | Edge
(optional)
The output configuration for storing sample data collected by the fleet.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.
Each tag consists of a key and a value, both of which you define.

.NET
Go
Java
Python
TypeScript