Skip to main content

report_group_trends

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

Overview

Namereport_group_trends
TypeResource
Idaws.codebuild.report_group_trends

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
raw_dataarrayAn array that contains the raw data for each report.
statsobjectContains the accumulated trend data.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_report_group_trendselectregionAnalyzes 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.

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

SELECT examples

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
;