Skip to main content

repository_sync_definitions

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

Overview

Namerepository_sync_definitions
TypeResource
Idaws.proton.repository_sync_definitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
branchstringThe repository branch.
directorystringThe directory in the repository.
parentstringThe resource that is synced from.
targetstringThe resource that is synced to.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_repository_sync_definitionsselectregionList repository sync definitions with detail data.

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

List repository sync definitions with detail data.

SELECT
branch,
directory,
parent,
target
FROM aws.proton.repository_sync_definitions
WHERE region = '{{ region }}' -- required
;