deleteReplicationInstance

Deletes the specified replication instance.

You must delete any migration tasks that are associated with the replication instance before you can delete it.

Samples


fun main() { 
   //sampleStart 
   // Deletes the specified replication instance. You must delete any migration tasks that are associated
// with the replication instance before you can delete it.
val resp = databaseMigrationClient.deleteReplicationInstance {
    replicationInstanceArn = "arn:aws:dms:us-east-1:123456789012:rep:6UTDJGBOUS3VI3SUWA66XFJCJQ"
} 
   //sampleEnd
}