Skip to main content

service_sync_blocker_summaries

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

Overview

Nameservice_sync_blocker_summaries
TypeResource
Idaws.proton.service_sync_blocker_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
latest_blockersarrayThe latest active blockers for the synced service.
service_instance_namestringThe name of the service instance that you want sync your service configuration with.
service_namestringThe name of the service that you want to get the sync blocker summary for. If given a service instance name and a service name, it will return the blockers only applying to the instance that is blocked. If given only a service name, it will return the blockers that apply to all of the instances. In order to get the blockers for a single instance, you will need to make two distinct calls, one to get the sync blocker summary for the service and the other to get the sync blocker for the service instance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_sync_blocker_summaryselectregionGet detailed data for the service sync blocker summary.

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

Get detailed data for the service sync blocker summary.

SELECT
latest_blockers,
service_instance_name,
service_name
FROM aws.proton.service_sync_blocker_summaries
WHERE region = '{{ region }}' -- required
;