Show / Hide Table of Contents

Interface ICfnDeviceFleetProps

Properties for defining a CfnDeviceFleet.

Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDeviceFleetProps
Syntax (vb)
Public Interface ICfnDeviceFleetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-devicefleet.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Sagemaker;

             var cfnDeviceFleetProps = new CfnDeviceFleetProps {
                 DeviceFleetName = "deviceFleetName",
                 OutputConfig = new EdgeOutputConfigProperty {
                     S3OutputLocation = "s3OutputLocation",

                     // the properties below are optional
                     KmsKeyId = "kmsKeyId"
                 },
                 RoleArn = "roleArn",

                 // the properties below are optional
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Description

A description of the fleet.

DeviceFleetName

Name of the device fleet.

OutputConfig

The output configuration for storing sample data collected by the fleet.

RoleArn

The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).

Tags

An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.

Properties

Description

A description of the fleet.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-devicefleet.html#cfn-sagemaker-devicefleet-description

DeviceFleetName

Name of the device fleet.

string DeviceFleetName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-devicefleet.html#cfn-sagemaker-devicefleet-devicefleetname

OutputConfig

The output configuration for storing sample data collected by the fleet.

object OutputConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-devicefleet.html#cfn-sagemaker-devicefleet-outputconfig

Type union: either IResolvable or CfnDeviceFleet.IEdgeOutputConfigProperty

RoleArn

The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).

object RoleArn { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-devicefleet.html#cfn-sagemaker-devicefleet-rolearn

Type union: either string or IRoleRef

Tags

An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

Each tag consists of a key and a value, both of which you define.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-devicefleet.html#cfn-sagemaker-devicefleet-tags

Back to top Generated by DocFX