[][src]Struct rusoto_dms::ReplicationTaskAssessmentResult

pub struct ReplicationTaskAssessmentResult {
    pub assessment_results: Option<String>,
    pub assessment_results_file: Option<String>,
    pub assessment_status: Option<String>,
    pub replication_task_arn: Option<String>,
    pub replication_task_identifier: Option<String>,
    pub replication_task_last_assessment_date: Option<f64>,
    pub s3_object_url: Option<String>,
}

The task assessment report in JSON format.

Fields

assessment_results: Option<String>

The task assessment results in JSON format.

assessment_results_file: Option<String>

The file containing the results of the task assessment.

assessment_status: Option<String>

The status of the task assessment.

replication_task_arn: Option<String>

The Amazon Resource Name (ARN) of the replication task.

replication_task_identifier: Option<String>

The replication task identifier of the task on which the task assessment was run.

replication_task_last_assessment_date: Option<f64>

The date the task assessment was completed.

s3_object_url: Option<String>

The URL of the S3 object containing the task assessment results.

Trait Implementations

impl Clone for ReplicationTaskAssessmentResult[src]

impl Debug for ReplicationTaskAssessmentResult[src]

impl Default for ReplicationTaskAssessmentResult[src]

impl<'de> Deserialize<'de> for ReplicationTaskAssessmentResult[src]

impl PartialEq<ReplicationTaskAssessmentResult> for ReplicationTaskAssessmentResult[src]

impl StructuralPartialEq for ReplicationTaskAssessmentResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.