Skip to content

Get Device Fleet Report

sagemaker_get_device_fleet_report R Documentation

Describes a fleet

Description

Describes a fleet.

Usage

sagemaker_get_device_fleet_report(DeviceFleetName)

Arguments

DeviceFleetName

[required] The name of the fleet.

Value

A list with the following syntax:

list(
  DeviceFleetArn = "string",
  DeviceFleetName = "string",
  OutputConfig = list(
    S3OutputLocation = "string",
    KmsKeyId = "string",
    PresetDeploymentType = "GreengrassV2Component",
    PresetDeploymentConfig = "string"
  ),
  Description = "string",
  ReportGenerated = as.POSIXct(
    "2015-01-01"
  ),
  DeviceStats = list(
    ConnectedDeviceCount = 123,
    RegisteredDeviceCount = 123
  ),
  AgentVersions = list(
    list(
      Version = "string",
      AgentCount = 123
    )
  ),
  ModelStats = list(
    list(
      ModelName = "string",
      ModelVersion = "string",
      OfflineDeviceCount = 123,
      ConnectedDeviceCount = 123,
      ActiveDeviceCount = 123,
      SamplingDeviceCount = 123
    )
  )
)

Request syntax

svc$get_device_fleet_report(
  DeviceFleetName = "string"
)