Skip to content

Update Device Fleet

sagemaker_update_device_fleet R Documentation

Updates a fleet of devices

Description

Updates a fleet of devices.

Usage

sagemaker_update_device_fleet(DeviceFleetName, RoleArn, Description,
  OutputConfig, EnableIotRoleAlias)

Arguments

DeviceFleetName

[required] The name of the fleet.

RoleArn

The Amazon Resource Name (ARN) of the device.

Description

Description of the fleet.

OutputConfig

[required] Output configuration for storing sample data collected by the 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$update_device_fleet(
  DeviceFleetName = "string",
  RoleArn = "string",
  Description = "string",
  OutputConfig = list(
    S3OutputLocation = "string",
    KmsKeyId = "string",
    PresetDeploymentType = "GreengrassV2Component",
    PresetDeploymentConfig = "string"
  ),
  EnableIotRoleAlias = TRUE|FALSE
)