aws_sdk_drs/client/stop_failback.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 [`StopFailback`](crate::operation::stop_failback::builders::StopFailbackFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`recovery_instance_id(impl Into<String>)`](crate::operation::stop_failback::builders::StopFailbackFluentBuilder::recovery_instance_id) / [`set_recovery_instance_id(Option<String>)`](crate::operation::stop_failback::builders::StopFailbackFluentBuilder::set_recovery_instance_id):<br>required: **true**<br><p>The ID of the Recovery Instance we want to stop failback for.</p><br>
7 /// - On success, responds with [`StopFailbackOutput`](crate::operation::stop_failback::StopFailbackOutput)
8 /// - On failure, responds with [`SdkError<StopFailbackError>`](crate::operation::stop_failback::StopFailbackError)
9 pub fn stop_failback(&self) -> crate::operation::stop_failback::builders::StopFailbackFluentBuilder {
10 crate::operation::stop_failback::builders::StopFailbackFluentBuilder::new(self.handle.clone())
11 }
12}