aws_sdk_elasticsearch/client/
describe_domain_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 [`DescribeDomainChangeProgress`](crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_name(impl Into<String>)`](crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder::set_domain_name):<br>required: **true**<br><p>The domain you want to get the progress information about.</p><br>
7    ///   - [`change_id(impl Into<String>)`](crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder::change_id) / [`set_change_id(Option<String>)`](crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder::set_change_id):<br>required: **false**<br><p>The 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.</p><br>
8    /// - On success, responds with [`DescribeDomainChangeProgressOutput`](crate::operation::describe_domain_change_progress::DescribeDomainChangeProgressOutput) with field(s):
9    ///   - [`change_progress_status(Option<ChangeProgressStatusDetails>)`](crate::operation::describe_domain_change_progress::DescribeDomainChangeProgressOutput::change_progress_status): <p>Progress information for the configuration change that is requested in the <code>DescribeDomainChangeProgress</code> request.</p>
10    /// - On failure, responds with [`SdkError<DescribeDomainChangeProgressError>`](crate::operation::describe_domain_change_progress::DescribeDomainChangeProgressError)
11    pub fn describe_domain_change_progress(
12        &self,
13    ) -> crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder {
14        crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder::new(self.handle.clone())
15    }
16}