aws_sdk_osis/client/
get_pipeline_change_progress.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetPipelineChangeProgress`](crate::operation::get_pipeline_change_progress::builders::GetPipelineChangeProgressFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`pipeline_name(impl Into<String>)`](crate::operation::get_pipeline_change_progress::builders::GetPipelineChangeProgressFluentBuilder::pipeline_name) / [`set_pipeline_name(Option<String>)`](crate::operation::get_pipeline_change_progress::builders::GetPipelineChangeProgressFluentBuilder::set_pipeline_name):<br>required: **true**<br><p>The name of the pipeline.</p><br>
7    /// - On success, responds with [`GetPipelineChangeProgressOutput`](crate::operation::get_pipeline_change_progress::GetPipelineChangeProgressOutput) with field(s):
8    ///   - [`change_progress_statuses(Option<Vec::<ChangeProgressStatus>>)`](crate::operation::get_pipeline_change_progress::GetPipelineChangeProgressOutput::change_progress_statuses): <p>The current status of the change happening on the pipeline.</p>
9    /// - On failure, responds with [`SdkError<GetPipelineChangeProgressError>`](crate::operation::get_pipeline_change_progress::GetPipelineChangeProgressError)
10    pub fn get_pipeline_change_progress(&self) -> crate::operation::get_pipeline_change_progress::builders::GetPipelineChangeProgressFluentBuilder {
11        crate::operation::get_pipeline_change_progress::builders::GetPipelineChangeProgressFluentBuilder::new(self.handle.clone())
12    }
13}