Skip to main content

service_instance_sync_status

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

Overview

Nameservice_instance_sync_status
TypeResource
Idaws.proton.service_instance_sync_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
desired_stateobjectThe service instance sync desired state that's returned by Proton
latest_successful_syncobjectThe detailed data of the latest successful sync with the service instance.
latest_syncobjectThe detailed data of the latest sync with the service instance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_instance_sync_statusselectregionGet the status of the synced service instance.

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 the synced service instance.

SELECT
desired_state,
latest_successful_sync,
latest_sync
FROM aws.proton.service_instance_sync_status
WHERE region = '{{ region }}' -- required
;