Skip to main content

device_fleet_reports

Creates, updates, deletes, gets or lists a device_fleet_reports resource.

Overview

Namedevice_fleet_reports
TypeResource
Idaws.sagemaker.device_fleet_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_versionsarrayThe versions of Edge Manager agent deployed on the fleet.
descriptionstringDescription of the fleet. (pattern: <code>[-a-zA-Z0-9_.,;:! ]*</code>)
device_fleet_arnstringThe Amazon Resource Name (ARN) of the device. (pattern: <code>arn:aws[a-z-]*:iam::\d{12}:device-fleet/?[a-zA-Z_0-9+=,.@-_/]+</code>)
device_fleet_namestringThe name of the fleet. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>)
device_statsobjectStatus of devices.
model_statsarrayStatus of model on device.
output_configobjectThe output configuration for storing sample data collected by the fleet.
report_generatedstring (date-time)Timestamp of when the report was generated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_device_fleet_reportselectregionDescribes a fleet.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes a fleet.

SELECT
agent_versions,
description,
device_fleet_arn,
device_fleet_name,
device_stats,
model_stats,
output_config,
report_generated
FROM aws.sagemaker.device_fleet_reports
WHERE region = '{{ region }}' -- required
;