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 ==
.