deleteMigrationProject
abstract suspend fun deleteMigrationProject(input: DeleteMigrationProjectRequest): DeleteMigrationProjectResponse
Deletes the specified migration project.
The migration project must be closed before you can delete it.
Samples
fun main() {
//sampleStart
// Deletes the specified migration project.
val resp = databaseMigrationClient.deleteMigrationProject {
migrationProjectIdentifier = "arn:aws:dms:us-east-1:012345678901:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRSTUVWXYZ012345"
}
//sampleEnd
}