Skip to content

Get Deployments

sagemakeredgemanager_get_deployments R Documentation

Use to get the active deployments from a device

Description

Use to get the active deployments from a device.

Usage

sagemakeredgemanager_get_deployments(DeviceName, DeviceFleetName)

Arguments

DeviceName

[required] The unique name of the device you want to get the configuration of active deployments from.

DeviceFleetName

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

Value

A list with the following syntax:

list(
  Deployments = list(
    list(
      DeploymentName = "string",
      Type = "Model",
      FailureHandlingPolicy = "ROLLBACK_ON_FAILURE"|"DO_NOTHING",
      Definitions = list(
        list(
          ModelHandle = "string",
          S3Url = "string",
          Checksum = list(
            Type = "SHA1",
            Sum = "string"
          ),
          State = "DEPLOY"|"UNDEPLOY"
        )
      )
    )
  )
)

Request syntax

svc$get_deployments(
  DeviceName = "string",
  DeviceFleetName = "string"
)