Skip to main content

repository_sync_definitions

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

Overview

Namerepository_sync_definitions
TypeResource
Idaws.codeconnections.repository_sync_definitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringAn enumeration token that, when provided in a request, returns the next batch of the results. (pattern: <code>^.*$</code>)
repository_sync_definitionsarrayThe list of repository sync definitions returned by the request. A RepositorySyncDefinition is a mapping from a repository branch to all the Amazon Web Services resources that are being synced from that branch.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_repository_sync_definitionsselectregionLists the repository sync definitions for repository links in your account.

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

Lists the repository sync definitions for repository links in your account.

SELECT
next_token,
repository_sync_definitions
FROM aws.codeconnections.repository_sync_definitions
WHERE region = '{{ region }}' -- required
;