Skip to main content

template_sync_status

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

Overview

Nametemplate_sync_status
TypeResource
Idaws.proton.template_sync_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
desired_stateobjectThe template sync desired state that's returned by Proton.
latest_successful_syncobjectThe details of the last successful sync that's returned by Proton.
latest_syncobjectThe details of the last sync that's returned by Proton.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;