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
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
Remarks
DeviceFleetName
Name of the device fleet.
string DeviceFleetName { get; }
Property Value
Remarks
OutputConfig
The output configuration for storing sample data collected by the fleet.
object OutputConfig { get; }
Property Value
Remarks
RoleArn
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
object RoleArn { get; }
Property Value
Remarks
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.