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.
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
public virtual CreateReplicationTaskResponse CreateReplicationTask( CreateReplicationTaskRequest request )
Container for the necessary parameters to execute the CreateReplicationTask service method.
| Exception | Condition |
|---|---|
| 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. |
Creates a replication task using the specified parameters.
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;
.NET Framework:
Supported in: 4.7.2 and newer