Skip to main content

sync_blocker_summaries

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

Overview

Namesync_blocker_summaries
TypeResource
Idaws.codeconnections.sync_blocker_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
latest_blockersarrayThe latest events for a sync blocker summary.
parent_resource_namestringThe parent resource name for a sync blocker summary. (pattern: <code>^[0-9A-Za-z]+[0-9A-Za-z_\-]*$</code>)
resource_namestringThe 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:

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

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

SELECT examples

Returns a list of the most recent sync blockers.

SELECT
latest_blockers,
parent_resource_name,
resource_name
FROM aws.codeconnections.sync_blocker_summaries
WHERE region = '{{ region }}' -- required
;