describeMetadataModelExportsToTarget

Returns a paginated list of metadata model export requests for a migration project, initiated by StartMetadataModelExportToTarget.

Required permissions:dms:ListMetadataModelExports. For more information, see Actions, resources, and condition keys for Database Migration Service.

Samples

// The following example retrieves the status of operations that export converted metadata models to
// the target database, identified by their request IDs.
val resp = databaseMigrationClient.describeMetadataModelExportsToTarget {
    migrationProjectIdentifier = "arn:aws:dms:us-east-1:111122223333:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRS"
    filters = listOf<Filter>(
        Filter {
            name = "request-id"
            values = listOf<String>(
                "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
                "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
                "a1b2c3d4-5678-90ab-cdef-EXAMPLE33333"
            )
        }            
    )
}