device_fleet_reports
Creates, updates, deletes, gets or lists a device_fleet_reports resource.
Overview
| Name | device_fleet_reports |
| Type | Resource |
| Id | aws.sagemaker.device_fleet_reports |
Fields
The following fields are returned by SELECT queries:
- get_device_fleet_report
| Name | Datatype | Description |
|---|---|---|
agent_versions | array | The versions of Edge Manager agent deployed on the fleet. |
description | string | Description of the fleet. (pattern: <code>[-a-zA-Z0-9_.,;:! ]*</code>) |
device_fleet_arn | string | The 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_name | string | The name of the fleet. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>) |
device_stats | object | Status of devices. |
model_stats | array | Status of model on device. |
output_config | object | The output configuration for storing sample data collected by the fleet. |
report_generated | string (date-time) | Timestamp of when the report was generated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_device_fleet_report | select | region | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_device_fleet_report
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
;