Skip to main content

domain_change_progress

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

Overview

Namedomain_change_progress
TypeResource
Idaws.es.domain_change_progress

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
change_idstringThe unique change identifier associated with a specific domain configuration change. (pattern: <code>\p{XDigit}{8}-\p{XDigit}{4}-\p{XDigit}{4}-\p{XDigit}{4}-\p{XDigit}{12}</code>)
change_progress_stagesarrayThe specific stages that the domain is going through to perform the configuration change.
completed_propertiesarrayThe list of properties involved in the domain configuration change that are completed.
config_change_statusstringThe current status of the configuration change. (Pending, Initializing, Validating, ValidationFailed, ApplyingChanges, Completed, PendingUserInput, Cancelled)
initiated_bystringThe IAM principal who initiated the configuration change. (CUSTOMER, SERVICE)
last_updated_timestring (date-time)The last time that the status of the configuration change was updated.
pending_propertiesarrayThe list of properties involved in the domain configuration change that are still in pending.
start_timestring (date-time)The time at which the configuration change is made on the domain.
statusstringThe overall status of the domain configuration change. This field can take the following values: PENDING, PROCESSING, COMPLETED and FAILED (PENDING, PROCESSING, COMPLETED, FAILED)
total_number_of_stagesintegerThe total number of stages required for the configuration change.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_domain_change_progressselectdomain_name, regionchangeidReturns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages.

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
domain_namestringThe domain you want to get the progress information about.
regionstringAWS region (default: us-east-1)
changeidstringThe specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change.

SELECT examples

Returns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages.

SELECT
change_id,
change_progress_stages,
completed_properties,
config_change_status,
initiated_by,
last_updated_time,
pending_properties,
start_time,
status,
total_number_of_stages
FROM aws.es.domain_change_progress
WHERE domain_name = '{{ domain_name }}' -- required
AND region = '{{ region }}' -- required
AND changeid = '{{ changeid }}'
;