#[non_exhaustive]pub struct ReplicationTaskIndividualAssessment {
pub replication_task_individual_assessment_arn: Option<String>,
pub replication_task_assessment_run_arn: Option<String>,
pub individual_assessment_name: Option<String>,
pub status: Option<String>,
pub replication_task_individual_assessment_start_date: Option<DateTime>,
}
Expand description
Provides information that describes an individual assessment from a premigration assessment run.
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.replication_task_individual_assessment_arn: Option<String>
Amazon Resource Name (ARN) of this individual assessment.
replication_task_assessment_run_arn: Option<String>
ARN of the premigration assessment run that is created to run this individual assessment.
individual_assessment_name: Option<String>
Name of this individual assessment.
status: Option<String>
Individual assessment status.
This status can have one of the following values:
-
"cancelled"
-
"error"
-
"failed"
-
"passed"
-
"pending"
-
"running"
replication_task_individual_assessment_start_date: Option<DateTime>
Date when this individual assessment was started as part of running the StartReplicationTaskAssessmentRun
operation.
Implementations§
source§impl ReplicationTaskIndividualAssessment
impl ReplicationTaskIndividualAssessment
sourcepub fn replication_task_individual_assessment_arn(&self) -> Option<&str>
pub fn replication_task_individual_assessment_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of this individual assessment.
sourcepub fn replication_task_assessment_run_arn(&self) -> Option<&str>
pub fn replication_task_assessment_run_arn(&self) -> Option<&str>
ARN of the premigration assessment run that is created to run this individual assessment.
sourcepub fn individual_assessment_name(&self) -> Option<&str>
pub fn individual_assessment_name(&self) -> Option<&str>
Name of this individual assessment.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
Individual assessment status.
This status can have one of the following values:
-
"cancelled"
-
"error"
-
"failed"
-
"passed"
-
"pending"
-
"running"
sourcepub fn replication_task_individual_assessment_start_date(
&self,
) -> Option<&DateTime>
pub fn replication_task_individual_assessment_start_date( &self, ) -> Option<&DateTime>
Date when this individual assessment was started as part of running the StartReplicationTaskAssessmentRun
operation.
source§impl ReplicationTaskIndividualAssessment
impl ReplicationTaskIndividualAssessment
sourcepub fn builder() -> ReplicationTaskIndividualAssessmentBuilder
pub fn builder() -> ReplicationTaskIndividualAssessmentBuilder
Creates a new builder-style object to manufacture ReplicationTaskIndividualAssessment
.
Trait Implementations§
source§impl Clone for ReplicationTaskIndividualAssessment
impl Clone for ReplicationTaskIndividualAssessment
source§fn clone(&self) -> ReplicationTaskIndividualAssessment
fn clone(&self) -> ReplicationTaskIndividualAssessment
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ReplicationTaskIndividualAssessment
impl PartialEq for ReplicationTaskIndividualAssessment
source§fn eq(&self, other: &ReplicationTaskIndividualAssessment) -> bool
fn eq(&self, other: &ReplicationTaskIndividualAssessment) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReplicationTaskIndividualAssessment
Auto Trait Implementations§
impl Freeze for ReplicationTaskIndividualAssessment
impl RefUnwindSafe for ReplicationTaskIndividualAssessment
impl Send for ReplicationTaskIndividualAssessment
impl Sync for ReplicationTaskIndividualAssessment
impl Unpin for ReplicationTaskIndividualAssessment
impl UnwindSafe for ReplicationTaskIndividualAssessment
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