Struct rusoto_dms::ModifyReplicationTaskMessage [] [src]

pub struct ModifyReplicationTaskMessage {
    pub cdc_start_time: Option<f64>,
    pub migration_type: Option<String>,
    pub replication_task_arn: String,
    pub replication_task_identifier: Option<String>,
    pub replication_task_settings: Option<String>,
    pub table_mappings: Option<String>,
}

Fields

The start time for the Change Data Capture (CDC) operation.

The migration type.

Valid values: full-load | cdc | full-load-and-cdc

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

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.

JSON file that contains settings for the task, such as target metadata settings.

When using the AWS CLI or boto3, provide the path of the JSON file that contains the table mappings. Precede the path with "file://". When working with the DMS API, provide the JSON as the parameter value.

For example, --table-mappings file://mappingfile.json

Trait Implementations

impl Default for ModifyReplicationTaskMessage
[src]

[src]

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

impl Debug for ModifyReplicationTaskMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyReplicationTaskMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations