interface CfnDeviceFleetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDeviceFleetProps |
Java | software.amazon.awscdk.services.sagemaker.CfnDeviceFleetProps |
Python | aws_cdk.aws_sagemaker.CfnDeviceFleetProps |
TypeScript | @aws-cdk/aws-sagemaker » CfnDeviceFleetProps |
Properties for defining a CfnDeviceFleet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const cfnDeviceFleetProps: sagemaker.CfnDeviceFleetProps = {
deviceFleetName: 'deviceFleetName',
outputConfig: {
s3OutputLocation: 's3OutputLocation',
// the properties below are optional
kmsKeyId: 'kmsKeyId',
},
roleArn: 'roleArn',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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). |
| description? | string | A description of the fleet. |
| tags? | Cfn[] | An array of key-value pairs that contain metadata to help you categorize and organize your device fleets. |
deviceFleetName
Type:
string
Name of the device fleet.
outputConfig
Type:
IResolvable | Edge
The output configuration for storing sample data collected by the fleet.
roleArn
Type:
string
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
description?
Type:
string
(optional)
A description of the fleet.
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
Java
Python
TypeScript