Struct rusoto_dms::ReplicationTask[][src]

pub struct ReplicationTask {
    pub last_failure_message: Option<String>,
    pub migration_type: Option<String>,
    pub replication_instance_arn: Option<String>,
    pub replication_task_arn: Option<String>,
    pub replication_task_creation_date: Option<f64>,
    pub replication_task_identifier: Option<String>,
    pub replication_task_settings: Option<String>,
    pub replication_task_start_date: Option<f64>,
    pub replication_task_stats: Option<ReplicationTaskStats>,
    pub source_endpoint_arn: Option<String>,
    pub status: Option<String>,
    pub stop_reason: Option<String>,
    pub table_mappings: Option<String>,
    pub target_endpoint_arn: Option<String>,
}

Fields

The last error (failure) message generated for the replication instance.

The type of migration.

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

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

The date the replication task was created.

The replication task identifier.

Constraints:

  • Must contain from 1 to 255 alphanumeric characters or hyphens.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

The settings for the replication task.

The date the replication task is scheduled to start.

The statistics for the task, including elapsed time, tables loaded, and table errors.

The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

The status of the replication task.

The reason the replication task was stopped.

Table mappings specified in the task.

The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

Trait Implementations

impl Default for ReplicationTask
[src]

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

impl Debug for ReplicationTask
[src]

Formats the value using the given formatter. Read more

impl Clone for ReplicationTask
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReplicationTask
[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