Struct aws_sdk_backup::operation::update_restore_testing_selection::UpdateRestoreTestingSelectionInput
source · #[non_exhaustive]pub struct UpdateRestoreTestingSelectionInput {
pub restore_testing_plan_name: Option<String>,
pub restore_testing_selection: Option<RestoreTestingSelectionForUpdate>,
pub restore_testing_selection_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.restore_testing_plan_name: Option<String>The restore testing plan name is required to update the indicated testing plan.
restore_testing_selection: Option<RestoreTestingSelectionForUpdate>To update your restore testing selection, you can use either protected resource ARNs or conditions, but not both. That is, if your selection has ProtectedResourceArns, requesting an update with the parameter ProtectedResourceConditions will be unsuccessful.
restore_testing_selection_name: Option<String>This is the required restore testing selection name of the restore testing selection you wish to update.
Implementations§
source§impl UpdateRestoreTestingSelectionInput
impl UpdateRestoreTestingSelectionInput
sourcepub fn restore_testing_plan_name(&self) -> Option<&str>
pub fn restore_testing_plan_name(&self) -> Option<&str>
The restore testing plan name is required to update the indicated testing plan.
sourcepub fn restore_testing_selection(
&self,
) -> Option<&RestoreTestingSelectionForUpdate>
pub fn restore_testing_selection( &self, ) -> Option<&RestoreTestingSelectionForUpdate>
To update your restore testing selection, you can use either protected resource ARNs or conditions, but not both. That is, if your selection has ProtectedResourceArns, requesting an update with the parameter ProtectedResourceConditions will be unsuccessful.
sourcepub fn restore_testing_selection_name(&self) -> Option<&str>
pub fn restore_testing_selection_name(&self) -> Option<&str>
This is the required restore testing selection name of the restore testing selection you wish to update.
source§impl UpdateRestoreTestingSelectionInput
impl UpdateRestoreTestingSelectionInput
sourcepub fn builder() -> UpdateRestoreTestingSelectionInputBuilder
pub fn builder() -> UpdateRestoreTestingSelectionInputBuilder
Creates a new builder-style object to manufacture UpdateRestoreTestingSelectionInput.
Trait Implementations§
source§impl Clone for UpdateRestoreTestingSelectionInput
impl Clone for UpdateRestoreTestingSelectionInput
source§fn clone(&self) -> UpdateRestoreTestingSelectionInput
fn clone(&self) -> UpdateRestoreTestingSelectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateRestoreTestingSelectionInput
impl PartialEq for UpdateRestoreTestingSelectionInput
source§fn eq(&self, other: &UpdateRestoreTestingSelectionInput) -> bool
fn eq(&self, other: &UpdateRestoreTestingSelectionInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRestoreTestingSelectionInput
Auto Trait Implementations§
impl Freeze for UpdateRestoreTestingSelectionInput
impl RefUnwindSafe for UpdateRestoreTestingSelectionInput
impl Send for UpdateRestoreTestingSelectionInput
impl Sync for UpdateRestoreTestingSelectionInput
impl Unpin for UpdateRestoreTestingSelectionInput
impl UnwindSafe for UpdateRestoreTestingSelectionInput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more