Skip to main content

dry_run_progress

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

Overview

Namedry_run_progress
TypeResource
Idaws.opensearch.dry_run_progress

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dry_run_configobjectThe current status of an OpenSearch Service domain.
dry_run_progress_statusobjectThe current status of the dry run, including any validation errors.
dry_run_resultsobjectThe results of the dry run.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_dry_run_progressselectdomain_name, regiondryRunId, loadDryRunConfigDescribes the progress of a pre-update dry run analysis on an Amazon OpenSearch Service domain. For more information, see Determining whether a change will cause a blue/green deployment.

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 name of the domain.
regionstringAWS region (default: us-east-1)
dryRunIdstringThe unique identifier of the dry run.
loadDryRunConfigbooleanWhether to include the configuration of the dry run in the response. The configuration specifies the updates that you're planning to make on the domain.

SELECT examples

Describes the progress of a pre-update dry run analysis on an Amazon OpenSearch Service domain. For more information, see Determining whether a change will cause a blue/green deployment.

SELECT
dry_run_config,
dry_run_progress_status,
dry_run_results
FROM aws.opensearch.dry_run_progress
WHERE domain_name = '{{ domain_name }}' -- required
AND region = '{{ region }}' -- required
AND dryRunId = '{{ dryRunId }}'
AND loadDryRunConfig = '{{ loadDryRunConfig }}'
;