shared_projects
Creates, updates, deletes, gets or lists a shared_projects resource.
Overview
| Name | shared_projects |
| Type | Resource |
| Id | aws.codebuild.shared_projects |
Fields
The following fields are returned by SELECT queries:
- list_shared_projects
| Name | Datatype | Description |
|---|---|---|
project | string | The list of ARNs for the build projects 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_projects | select | region | Gets a list of projects 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_projects
Gets a list of projects that are shared with other Amazon Web Services accounts or users.
SELECT
project
FROM aws.codebuild.shared_projects
WHERE region = '{{ region }}' -- required
;