#[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
sourceimpl 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.
sourceimpl ReplicationTaskIndividualAssessment
impl ReplicationTaskIndividualAssessment
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReplicationTaskIndividualAssessment
Trait Implementations
sourceimpl Clone for ReplicationTaskIndividualAssessment
impl Clone for ReplicationTaskIndividualAssessment
sourcefn clone(&self) -> ReplicationTaskIndividualAssessment
fn clone(&self) -> ReplicationTaskIndividualAssessment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ReplicationTaskIndividualAssessment> for ReplicationTaskIndividualAssessment
impl PartialEq<ReplicationTaskIndividualAssessment> for ReplicationTaskIndividualAssessment
sourcefn eq(&self, other: &ReplicationTaskIndividualAssessment) -> bool
fn eq(&self, other: &ReplicationTaskIndividualAssessment) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReplicationTaskIndividualAssessment) -> bool
fn ne(&self, other: &ReplicationTaskIndividualAssessment) -> bool
This method tests for !=
.
impl StructuralPartialEq for ReplicationTaskIndividualAssessment
Auto Trait Implementations
impl RefUnwindSafe for ReplicationTaskIndividualAssessment
impl Send for ReplicationTaskIndividualAssessment
impl Sync for ReplicationTaskIndividualAssessment
impl Unpin for ReplicationTaskIndividualAssessment
impl UnwindSafe for ReplicationTaskIndividualAssessment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more