template_sync_status
Creates, updates, deletes, gets or lists a template_sync_status resource.
Overview
| Name | template_sync_status |
| Type | Resource |
| Id | aws.proton.template_sync_status |
Fields
The following fields are returned by SELECT queries:
- get_template_sync_status
| Name | Datatype | Description |
|---|---|---|
desired_state | object | The template sync desired state that's returned by Proton. |
latest_successful_sync | object | The details of the last successful sync that's returned by Proton. |
latest_sync | object | The details of the last sync that's returned by Proton. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_template_sync_status | select | region | Get the status of a template sync. |
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_template_sync_status
Get the status of a template sync.
SELECT
desired_state,
latest_successful_sync,
latest_sync
FROM aws.proton.template_sync_status
WHERE region = '{{ region }}' -- required
;