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