AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Creates a replication task using the specified parameters.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to CreateReplicationTaskAsync.

Namespace: Amazon.DatabaseMigrationService
Assembly: AWSSDK.DatabaseMigrationService.dll
Version: 3.x.y.z

Syntax

C#
public abstract CreateReplicationTaskResponse CreateReplicationTask(
         CreateReplicationTaskRequest request
)

Parameters

request
Type: Amazon.DatabaseMigrationService.Model.CreateReplicationTaskRequest

Container for the necessary parameters to execute the CreateReplicationTask service method.

Return Value


The response from the CreateReplicationTask service method, as returned by DatabaseMigrationService.

Exceptions

ExceptionCondition
AccessDeniedException DMS was denied access to the endpoint. Check that the role is correctly configured.
InvalidResourceStateException The resource is in a state that prevents it from being used for database migration.
KMSKeyNotAccessibleException DMS cannot access the KMS key.
ResourceAlreadyExistsException The resource you are attempting to create already exists.
ResourceNotFoundException The resource could not be found.
ResourceQuotaExceededException The quota for this resource quota has been exceeded.

Examples

Creates a replication task using the specified parameters.

Create replication task


var client = new AmazonDatabaseMigrationServiceClient();
var response = client.CreateReplicationTask(new CreateReplicationTaskRequest 
{
    CdcStartTime = new DateTime(2016, 12, 14, 6, 25, 43, DateTimeKind.Utc),
    MigrationType = "full-load",
    ReplicationInstanceArn = "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ",
    ReplicationTaskIdentifier = "task1",
    ReplicationTaskSettings = "",
    SourceEndpointArn = "arn:aws:dms:us-east-1:123456789012:endpoint:ZW5UAN6P4E77EC7YWHK4RZZ3BE",
    TableMappings = "file://mappingfile.json",
    Tags = new List<Tag> {
        new Tag {
            Key = "Acount",
            Value = "24352226"
        }
    },
    TargetEndpointArn = "arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E"
});

ReplicationTask replicationTask = response.ReplicationTask;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also