aws_sdk_route53/client/get_change.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 [`GetChange`](crate::operation::get_change::builders::GetChangeFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id(impl Into<String>)`](crate::operation::get_change::builders::GetChangeFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_change::builders::GetChangeFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the change batch request. The value that you specify here is the value that <code>ChangeResourceRecordSets</code> returned in the <code>Id</code> element when you submitted the request.</p><br>
7 /// - On success, responds with [`GetChangeOutput`](crate::operation::get_change::GetChangeOutput) with field(s):
8 /// - [`change_info(Option<ChangeInfo>)`](crate::operation::get_change::GetChangeOutput::change_info): <p>A complex type that contains information about the specified change batch.</p>
9 /// - On failure, responds with [`SdkError<GetChangeError>`](crate::operation::get_change::GetChangeError)
10 pub fn get_change(&self) -> crate::operation::get_change::builders::GetChangeFluentBuilder {
11 crate::operation::get_change::builders::GetChangeFluentBuilder::new(self.handle.clone())
12 }
13}