Struct aws_sdk_backup::operation::create_restore_testing_plan::CreateRestoreTestingPlanOutput
source · #[non_exhaustive]pub struct CreateRestoreTestingPlanOutput {
pub creation_time: DateTime,
pub restore_testing_plan_arn: String,
pub restore_testing_plan_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
The date and time a restore testing plan was created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.
restore_testing_plan_arn: String
An Amazon Resource Name (ARN) that uniquely identifies the created restore testing plan.
restore_testing_plan_name: String
This unique string 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.
Implementations§
source§impl CreateRestoreTestingPlanOutput
impl CreateRestoreTestingPlanOutput
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The date and time a restore testing plan was created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.
sourcepub fn restore_testing_plan_arn(&self) -> &str
pub fn restore_testing_plan_arn(&self) -> &str
An Amazon Resource Name (ARN) that uniquely identifies the created restore testing plan.
sourcepub fn restore_testing_plan_name(&self) -> &str
pub fn restore_testing_plan_name(&self) -> &str
This unique string 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.
source§impl CreateRestoreTestingPlanOutput
impl CreateRestoreTestingPlanOutput
sourcepub fn builder() -> CreateRestoreTestingPlanOutputBuilder
pub fn builder() -> CreateRestoreTestingPlanOutputBuilder
Creates a new builder-style object to manufacture CreateRestoreTestingPlanOutput
.
Trait Implementations§
source§impl Clone for CreateRestoreTestingPlanOutput
impl Clone for CreateRestoreTestingPlanOutput
source§fn clone(&self) -> CreateRestoreTestingPlanOutput
fn clone(&self) -> CreateRestoreTestingPlanOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateRestoreTestingPlanOutput
impl PartialEq for CreateRestoreTestingPlanOutput
source§fn eq(&self, other: &CreateRestoreTestingPlanOutput) -> bool
fn eq(&self, other: &CreateRestoreTestingPlanOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for CreateRestoreTestingPlanOutput
impl RequestId for CreateRestoreTestingPlanOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for CreateRestoreTestingPlanOutput
Auto Trait Implementations§
impl Freeze for CreateRestoreTestingPlanOutput
impl RefUnwindSafe for CreateRestoreTestingPlanOutput
impl Send for CreateRestoreTestingPlanOutput
impl Sync for CreateRestoreTestingPlanOutput
impl Unpin for CreateRestoreTestingPlanOutput
impl UnwindSafe for CreateRestoreTestingPlanOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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