Skip to main content

pipeline_change_progress

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

Overview

Namepipeline_change_progress
TypeResource
Idaws.osis.pipeline_change_progress

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
change_progress_statusesarrayThe current status of the change happening on the pipeline.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_pipeline_change_progressselectpipeline_name, regionReturns progress information for the current change happening on an OpenSearch Ingestion pipeline. Currently, this operation only returns information when a pipeline is being created. For more information, see Tracking the status of pipeline creation.

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
pipeline_namestringThe name of the pipeline.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns progress information for the current change happening on an OpenSearch Ingestion pipeline. Currently, this operation only returns information when a pipeline is being created. For more information, see Tracking the status of pipeline creation.

SELECT
change_progress_statuses
FROM aws.osis.pipeline_change_progress
WHERE pipeline_name = '{{ pipeline_name }}' -- required
AND region = '{{ region }}' -- required
;