Struct aws_sdk_backup::operation::create_restore_testing_plan::CreateRestoreTestingPlanInput
source · #[non_exhaustive]pub struct CreateRestoreTestingPlanInput {
pub creator_request_id: Option<String>,
pub restore_testing_plan: Option<RestoreTestingPlanForCreate>,
pub tags: Option<HashMap<String, 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.creator_request_id: Option<String>
This is a unique string that identifies the request and allows failed requests to be retriedwithout the risk of running the operation twice. This parameter is optional. If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.
restore_testing_plan: Option<RestoreTestingPlanForCreate>
A restore testing plan must contain a unique RestoreTestingPlanName
string you create and must contain a ScheduleExpression
cron. You may optionally include a StartWindowHours
integer and a CreatorRequestId
string.
The RestoreTestingPlanName
is a unique string that is the name of the restore testing plan. This cannot be changed after creation, and it must consist of only alphanumeric characters and underscores.
Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters,numbers, spaces, and the following characters: + - = . _ : /.
Implementations§
source§impl CreateRestoreTestingPlanInput
impl CreateRestoreTestingPlanInput
sourcepub fn creator_request_id(&self) -> Option<&str>
pub fn creator_request_id(&self) -> Option<&str>
This is a unique string that identifies the request and allows failed requests to be retriedwithout the risk of running the operation twice. This parameter is optional. If used, this parameter must contain 1 to 50 alphanumeric or '-_.' characters.
sourcepub fn restore_testing_plan(&self) -> Option<&RestoreTestingPlanForCreate>
pub fn restore_testing_plan(&self) -> Option<&RestoreTestingPlanForCreate>
A restore testing plan must contain a unique RestoreTestingPlanName
string you create and must contain a ScheduleExpression
cron. You may optionally include a StartWindowHours
integer and a CreatorRequestId
string.
The RestoreTestingPlanName
is a unique string that is the name of the restore testing plan. This cannot be changed after creation, and it must consist of only alphanumeric characters and underscores.
Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters,numbers, spaces, and the following characters: + - = . _ : /.
source§impl CreateRestoreTestingPlanInput
impl CreateRestoreTestingPlanInput
sourcepub fn builder() -> CreateRestoreTestingPlanInputBuilder
pub fn builder() -> CreateRestoreTestingPlanInputBuilder
Creates a new builder-style object to manufacture CreateRestoreTestingPlanInput
.
Trait Implementations§
source§impl Clone for CreateRestoreTestingPlanInput
impl Clone for CreateRestoreTestingPlanInput
source§fn clone(&self) -> CreateRestoreTestingPlanInput
fn clone(&self) -> CreateRestoreTestingPlanInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateRestoreTestingPlanInput
impl PartialEq for CreateRestoreTestingPlanInput
source§fn eq(&self, other: &CreateRestoreTestingPlanInput) -> bool
fn eq(&self, other: &CreateRestoreTestingPlanInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateRestoreTestingPlanInput
Auto Trait Implementations§
impl Freeze for CreateRestoreTestingPlanInput
impl RefUnwindSafe for CreateRestoreTestingPlanInput
impl Send for CreateRestoreTestingPlanInput
impl Sync for CreateRestoreTestingPlanInput
impl Unpin for CreateRestoreTestingPlanInput
impl UnwindSafe for CreateRestoreTestingPlanInput
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