Skip to main content

repositories_for_approval_rule_templates

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

Overview

Namerepositories_for_approval_rule_templates
TypeResource
Idaws.codecommit.repositories_for_approval_rule_templates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
repository_namestringA list of repository names that are associated with the specified approval rule template.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_repositories_for_approval_rule_templateselectregionLists all repositories associated with the specified approval rule template.

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 all repositories associated with the specified approval rule template.

SELECT
repository_name
FROM aws.codecommit.repositories_for_approval_rule_templates
WHERE region = '{{ region }}' -- required
;