aws_sdk_backup/client/delete_restore_testing_selection.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 [`DeleteRestoreTestingSelection`](crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`restore_testing_plan_name(impl Into<String>)`](crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder::restore_testing_plan_name) / [`set_restore_testing_plan_name(Option<String>)`](crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder::set_restore_testing_plan_name):<br>required: **true**<br><p>Required unique name of the restore testing plan that contains the restore testing selection you wish to delete.</p><br>
7 /// - [`restore_testing_selection_name(impl Into<String>)`](crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder::restore_testing_selection_name) / [`set_restore_testing_selection_name(Option<String>)`](crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder::set_restore_testing_selection_name):<br>required: **true**<br><p>Required unique name of the restore testing selection you wish to delete.</p><br>
8 /// - On success, responds with [`DeleteRestoreTestingSelectionOutput`](crate::operation::delete_restore_testing_selection::DeleteRestoreTestingSelectionOutput)
9 /// - On failure, responds with [`SdkError<DeleteRestoreTestingSelectionError>`](crate::operation::delete_restore_testing_selection::DeleteRestoreTestingSelectionError)
10 pub fn delete_restore_testing_selection(
11 &self,
12 ) -> crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder {
13 crate::operation::delete_restore_testing_selection::builders::DeleteRestoreTestingSelectionFluentBuilder::new(self.handle.clone())
14 }
15}