Struct aws_sdk_backup::operation::delete_restore_testing_selection::DeleteRestoreTestingSelectionInput
source · #[non_exhaustive]pub struct DeleteRestoreTestingSelectionInput {
pub restore_testing_plan_name: Option<String>,
pub restore_testing_selection_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.restore_testing_plan_name: Option<String>
Required unique name of the restore testing plan that contains the restore testing selection you wish to delete.
restore_testing_selection_name: Option<String>
Required unique name of the restore testing selection you wish to delete.
Implementations§
source§impl DeleteRestoreTestingSelectionInput
impl DeleteRestoreTestingSelectionInput
sourcepub fn restore_testing_plan_name(&self) -> Option<&str>
pub fn restore_testing_plan_name(&self) -> Option<&str>
Required unique name of the restore testing plan that contains the restore testing selection you wish to delete.
sourcepub fn restore_testing_selection_name(&self) -> Option<&str>
pub fn restore_testing_selection_name(&self) -> Option<&str>
Required unique name of the restore testing selection you wish to delete.
source§impl DeleteRestoreTestingSelectionInput
impl DeleteRestoreTestingSelectionInput
sourcepub fn builder() -> DeleteRestoreTestingSelectionInputBuilder
pub fn builder() -> DeleteRestoreTestingSelectionInputBuilder
Creates a new builder-style object to manufacture DeleteRestoreTestingSelectionInput
.
Trait Implementations§
source§impl Clone for DeleteRestoreTestingSelectionInput
impl Clone for DeleteRestoreTestingSelectionInput
source§fn clone(&self) -> DeleteRestoreTestingSelectionInput
fn clone(&self) -> DeleteRestoreTestingSelectionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for DeleteRestoreTestingSelectionInput
impl PartialEq for DeleteRestoreTestingSelectionInput
source§fn eq(&self, other: &DeleteRestoreTestingSelectionInput) -> bool
fn eq(&self, other: &DeleteRestoreTestingSelectionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteRestoreTestingSelectionInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteRestoreTestingSelectionInput
impl Send for DeleteRestoreTestingSelectionInput
impl Sync for DeleteRestoreTestingSelectionInput
impl Unpin for DeleteRestoreTestingSelectionInput
impl UnwindSafe for DeleteRestoreTestingSelectionInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.