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 [`RestoreFromRecoveryPoint`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`recovery_point_id(impl Into<String>)`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::recovery_point_id) / [`set_recovery_point_id(Option<String>)`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::set_recovery_point_id): <p>The unique identifier of the recovery point to restore from.</p>
    ///   - [`namespace_name(impl Into<String>)`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::namespace_name) / [`set_namespace_name(Option<String>)`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::set_namespace_name): <p>The name of the namespace to restore data into.</p>
    ///   - [`workgroup_name(impl Into<String>)`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::workgroup_name) / [`set_workgroup_name(Option<String>)`](crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::set_workgroup_name): <p>The name of the workgroup used to restore data.</p>
    /// - On success, responds with [`RestoreFromRecoveryPointOutput`](crate::operation::restore_from_recovery_point::RestoreFromRecoveryPointOutput) with field(s):
    ///   - [`recovery_point_id(Option<String>)`](crate::operation::restore_from_recovery_point::RestoreFromRecoveryPointOutput::recovery_point_id): <p>The unique identifier of the recovery point used for the restore.</p>
    ///   - [`namespace(Option<Namespace>)`](crate::operation::restore_from_recovery_point::RestoreFromRecoveryPointOutput::namespace): <p>The namespace that data was restored into.</p>
    /// - On failure, responds with [`SdkError<RestoreFromRecoveryPointError>`](crate::operation::restore_from_recovery_point::RestoreFromRecoveryPointError)
    pub fn restore_from_recovery_point(&self) -> crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder {
        crate::operation::restore_from_recovery_point::builders::RestoreFromRecoveryPointFluentBuilder::new(self.handle.clone())
    }
}