report_group_trends
Creates, updates, deletes, gets or lists a report_group_trends resource.
Overview
| Name | report_group_trends |
| Type | Resource |
| Id | aws.codebuild.report_group_trends |
Fields
The following fields are returned by SELECT queries:
- get_report_group_trend
| Name | Datatype | Description |
|---|---|---|
raw_data | array | An array that contains the raw data for each report. |
stats | object | Contains the accumulated trend data. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_report_group_trend | select | region | Analyzes and accumulates test report values for the specified test reports. |
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_report_group_trend
Analyzes and accumulates test report values for the specified test reports.
SELECT
raw_data,
stats
FROM aws.codebuild.report_group_trends
WHERE region = '{{ region }}' -- required
;