service_sync_blocker_summaries
Creates, updates, deletes, gets or lists a service_sync_blocker_summaries resource.
Overview
| Name | service_sync_blocker_summaries |
| Type | Resource |
| Id | aws.proton.service_sync_blocker_summaries |
Fields
The following fields are returned by SELECT queries:
- get_service_sync_blocker_summary
| Name | Datatype | Description |
|---|---|---|
latest_blockers | array | The latest active blockers for the synced service. |
service_instance_name | string | The name of the service instance that you want sync your service configuration with. |
service_name | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_service_sync_blocker_summary | select | region | Get 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_service_sync_blocker_summary
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
;