aws-cdk-lib.aws_sagemaker.CfnDeviceFleetProps

interface CfnDeviceFleetProps

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

NameTypeDescription
deviceFleetNamestringName of the device fleet.
outputConfigIResolvable | EdgeOutputConfigPropertyThe output configuration for storing sample data collected by the fleet.
roleArnstringThe Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
description?stringA description of the fleet.
tags?CfnTag[]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 | EdgeOutputConfigProperty

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