1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDomainChangeProgress`](crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DescribeDomainChangeProgressOutput`](crate::operation::describe_domain_change_progress::DescribeDomainChangeProgressOutput) with field(s):
    ///   - [`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>
    /// - On failure, responds with [`SdkError<DescribeDomainChangeProgressError>`](crate::operation::describe_domain_change_progress::DescribeDomainChangeProgressError)
    pub fn describe_domain_change_progress(
        &self,
    ) -> crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder {
        crate::operation::describe_domain_change_progress::builders::DescribeDomainChangeProgressFluentBuilder::new(self.handle.clone())
    }
}