Struct rusoto_dms::CreateReplicationTaskMessage[][src]

pub struct CreateReplicationTaskMessage {
    pub cdc_start_time: Option<f64>,
    pub migration_type: String,
    pub replication_instance_arn: String,
    pub replication_task_identifier: String,
    pub replication_task_settings: Option<String>,
    pub source_endpoint_arn: String,
    pub table_mappings: String,
    pub tags: Option<Vec<Tag>>,
    pub target_endpoint_arn: String,
}

Fields

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

The migration type.

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

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.

Settings for the task, such as target metadata settings. For a complete list of task settings, see Task Settings for AWS Database Migration Service Tasks.

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

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

Tags to be added to the replication instance.

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

Trait Implementations

impl Default for CreateReplicationTaskMessage
[src]

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

impl Debug for CreateReplicationTaskMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateReplicationTaskMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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