Struct rusoto_dms::ReplicationTaskAssessmentResult[][src]

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

The task assessment results in JSON format.

The file containing the results of the task assessment.

The status of the task assessment.

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

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

The date the task assessment was completed.

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

Trait Implementations

impl Default for ReplicationTaskAssessmentResult
[src]

Returns the "default value" for a type. Read more

impl Debug for ReplicationTaskAssessmentResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ReplicationTaskAssessmentResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReplicationTaskAssessmentResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations