Skip to main content

shared_projects

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

Overview

Nameshared_projects
TypeResource
Idaws.codebuild.shared_projects

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
projectstringThe 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:

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

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

SELECT examples

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
;