Skip to content

Create Device Fleet

sagemaker_create_device_fleet R Documentation

Creates a device fleet

Description

Creates a device fleet.

Usage

sagemaker_create_device_fleet(DeviceFleetName, RoleArn, Description,
  OutputConfig, Tags, EnableIotRoleAlias)

Arguments

DeviceFleetName

[required] The name of the fleet that the device belongs to.

RoleArn

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

Description

A description of the fleet.

OutputConfig

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

Tags

Creates tags for the specified fleet.

EnableIotRoleAlias

Whether to create an Amazon Web Services IoT Role Alias during device fleet creation. The name of the role alias generated will match this pattern: "SageMakerEdge-{DeviceFleetName}".

For example, if your device fleet is called "demo-fleet", the name of the role alias will be "SageMakerEdge-demo-fleet".

Value

An empty list.

Request syntax

svc$create_device_fleet(
  DeviceFleetName = "string",
  RoleArn = "string",
  Description = "string",
  OutputConfig = list(
    S3OutputLocation = "string",
    KmsKeyId = "string",
    PresetDeploymentType = "GreengrassV2Component",
    PresetDeploymentConfig = "string"
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  EnableIotRoleAlias = TRUE|FALSE
)