suite_run_reports
Creates, updates, deletes, gets or lists a suite_run_reports resource.
Overview
| Name | suite_run_reports |
| Type | Resource |
| Id | aws.iotdeviceadvisor.suite_run_reports |
Fields
The following fields are returned by SELECT queries:
- get_suite_run_report
| Name | Datatype | Description |
|---|---|---|
qualification_report_download_url | string | Download URL of the qualification report. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_suite_run_report | select | suite_definition_id, suite_run_id, region | Gets a report download link for a successful Device Advisor qualifying test suite run. Requires permission to access the GetSuiteRunReport action. |
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) |
suite_definition_id | string | Suite definition ID of the test suite. |
suite_run_id | string | Suite run ID of the test suite run. |
SELECT examples
- get_suite_run_report
Gets a report download link for a successful Device Advisor qualifying test suite run. Requires permission to access the GetSuiteRunReport action.
SELECT
qualification_report_download_url
FROM aws.iotdeviceadvisor.suite_run_reports
WHERE suite_definition_id = '{{ suite_definition_id }}' -- required
AND suite_run_id = '{{ suite_run_id }}' -- required
AND region = '{{ region }}' -- required
;