Skip to content

List Stage Devices

sagemaker_list_stage_devices R Documentation

Lists devices allocated to the stage, containing detailed device information and deployment status

Description

Lists devices allocated to the stage, containing detailed device information and deployment status.

Usage

sagemaker_list_stage_devices(NextToken, MaxResults,
  EdgeDeploymentPlanName, ExcludeDevicesDeployedInOtherStage, StageName)

Arguments

NextToken

The response from the last list when returning a list large enough to neeed tokening.

MaxResults

The maximum number of requests to select.

EdgeDeploymentPlanName

[required] The name of the edge deployment plan.

ExcludeDevicesDeployedInOtherStage

Toggle for excluding devices deployed in other stages.

StageName

[required] The name of the stage in the deployment.

Value

A list with the following syntax:

list(
  DeviceDeploymentSummaries = list(
    list(
      EdgeDeploymentPlanArn = "string",
      EdgeDeploymentPlanName = "string",
      StageName = "string",
      DeployedStageName = "string",
      DeviceFleetName = "string",
      DeviceName = "string",
      DeviceArn = "string",
      DeviceDeploymentStatus = "READYTODEPLOY"|"INPROGRESS"|"DEPLOYED"|"FAILED"|"STOPPING"|"STOPPED",
      DeviceDeploymentStatusMessage = "string",
      Description = "string",
      DeploymentStartTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_stage_devices(
  NextToken = "string",
  MaxResults = 123,
  EdgeDeploymentPlanName = "string",
  ExcludeDevicesDeployedInOtherStage = TRUE|FALSE,
  StageName = "string"
)