startMetadataModelConversion

Converts your source database objects to a format compatible with the target database.

Samples


fun main() { 
   //sampleStart 
   // Converts your source database objects to a format compatible with the target database.
val resp = databaseMigrationClient.startMetadataModelConversion {
    migrationProjectIdentifier = "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012"
    selectionRules = "{\"rules\": [{\"rule-type\": \"selection\",\"rule-id\": \"1\",\"rule-name\": \"1\",\"object-locator\": {\"server-name\": \"aurora-pg.cluster-0a1b2c3d4e5f.us-east-1.rds.amazonaws.com\", \"schema-name\": \"schema1\", \"table-name\": \"Cities\"},\"rule-action\": \"explicit\"} ]}"
} 
   //sampleEnd
}