Struct aws_sdk_backup::operation::create_restore_testing_selection::CreateRestoreTestingSelectionOutput
source · #[non_exhaustive]pub struct CreateRestoreTestingSelectionOutput {
pub creation_time: DateTime,
pub restore_testing_plan_arn: String,
pub restore_testing_plan_name: String,
pub restore_testing_selection_name: String,
/* private fields */
}
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.creation_time: DateTime
This is the time the resource testing selection was created successfully.
restore_testing_plan_arn: String
This is the ARN of the restore testing plan with which the restore testing selection is associated.
restore_testing_plan_name: String
Unique string that is the name of the restore testing plan.
The name cannot be changed after creation. The name consists of only alphanumeric characters and underscores. Maximum length is 50.
restore_testing_selection_name: String
This is the unique name of the restore testing selection that belongs to the related restore testing plan.
Implementations§
source§impl CreateRestoreTestingSelectionOutput
impl CreateRestoreTestingSelectionOutput
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
This is the time the resource testing selection was created successfully.
sourcepub fn restore_testing_plan_arn(&self) -> &str
pub fn restore_testing_plan_arn(&self) -> &str
This is the ARN of the restore testing plan with which the restore testing selection is associated.
sourcepub fn restore_testing_plan_name(&self) -> &str
pub fn restore_testing_plan_name(&self) -> &str
Unique string that is the name of the restore testing plan.
The name cannot be changed after creation. The name consists of only alphanumeric characters and underscores. Maximum length is 50.
sourcepub fn restore_testing_selection_name(&self) -> &str
pub fn restore_testing_selection_name(&self) -> &str
This is the unique name of the restore testing selection that belongs to the related restore testing plan.
source§impl CreateRestoreTestingSelectionOutput
impl CreateRestoreTestingSelectionOutput
sourcepub fn builder() -> CreateRestoreTestingSelectionOutputBuilder
pub fn builder() -> CreateRestoreTestingSelectionOutputBuilder
Creates a new builder-style object to manufacture CreateRestoreTestingSelectionOutput
.
Trait Implementations§
source§impl Clone for CreateRestoreTestingSelectionOutput
impl Clone for CreateRestoreTestingSelectionOutput
source§fn clone(&self) -> CreateRestoreTestingSelectionOutput
fn clone(&self) -> CreateRestoreTestingSelectionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateRestoreTestingSelectionOutput
impl PartialEq for CreateRestoreTestingSelectionOutput
source§fn eq(&self, other: &CreateRestoreTestingSelectionOutput) -> bool
fn eq(&self, other: &CreateRestoreTestingSelectionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateRestoreTestingSelectionOutput
impl RequestId for CreateRestoreTestingSelectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for CreateRestoreTestingSelectionOutput
Auto Trait Implementations§
impl Freeze for CreateRestoreTestingSelectionOutput
impl RefUnwindSafe for CreateRestoreTestingSelectionOutput
impl Send for CreateRestoreTestingSelectionOutput
impl Sync for CreateRestoreTestingSelectionOutput
impl Unpin for CreateRestoreTestingSelectionOutput
impl UnwindSafe for CreateRestoreTestingSelectionOutput
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