reports_for_report_groups
Creates, updates, deletes, gets or lists a reports_for_report_groups resource.
Overview
| Name | reports_for_report_groups |
| Type | Resource |
| Id | aws.codebuild.reports_for_report_groups |
Fields
The following fields are returned by SELECT queries:
- list_reports_for_report_group
| Name | Datatype | Description |
|---|---|---|
report | string | The list of report ARNs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_reports_for_report_group | select | region | Returns a list of ARNs for the reports that belong to a ReportGroup. |
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
- list_reports_for_report_group
Returns a list of ARNs for the reports that belong to a ReportGroup.
SELECT
report
FROM aws.codebuild.reports_for_report_groups
WHERE region = '{{ region }}' -- required
;