sync_blocker_summaries
Creates, updates, deletes, gets or lists a sync_blocker_summaries resource.
Overview
| Name | sync_blocker_summaries |
| Type | Resource |
| Id | aws.codestar_connections.sync_blocker_summaries |
Fields
The following fields are returned by SELECT queries:
- get_sync_blocker_summary
| Name | Datatype | Description |
|---|---|---|
latest_blockers | array | The latest events for a sync blocker summary. |
parent_resource_name | string | The parent resource name for a sync blocker summary. (pattern: <code>^[0-9A-Za-z]+[0-9A-Za-z_\-]*$</code>) |
resource_name | string | The resource name for sync blocker summary. (pattern: <code>^[0-9A-Za-z]+[0-9A-Za-z_\-]*$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_sync_blocker_summary | select | region | Returns a list of the most recent sync blockers. |
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
- get_sync_blocker_summary
Returns a list of the most recent sync blockers.
SELECT
latest_blockers,
parent_resource_name,
resource_name
FROM aws.codestar_connections.sync_blocker_summaries
WHERE region = '{{ region }}' -- required
;