shared_report_groups
Creates, updates, deletes, gets or lists a shared_report_groups resource.
Overview
| Name | shared_report_groups |
| Type | Resource |
| Id | aws.codebuild.shared_report_groups |
Fields
The following fields are returned by SELECT queries:
- list_shared_report_groups
| Name | Datatype | Description |
|---|---|---|
report_group | string | The list of ARNs for the report groups shared with the current Amazon Web Services account or user. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_shared_report_groups | select | region | Gets a list of report groups that are shared with other Amazon Web Services accounts or users. |
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_shared_report_groups
Gets a list of report groups that are shared with other Amazon Web Services accounts or users.
SELECT
report_group
FROM aws.codebuild.shared_report_groups
WHERE region = '{{ region }}' -- required
;