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.
Returns a paginated list of metadata model exports.
For .NET Core this operation is only available in asynchronous form. Please refer to DescribeMetadataModelExportsAsScriptAsync.
Namespace: Amazon.DatabaseMigrationService
Assembly: AWSSDK.DatabaseMigrationService.dll
Version: 3.x.y.z
public abstract DescribeMetadataModelExportsAsScriptResponse DescribeMetadataModelExportsAsScript( DescribeMetadataModelExportsAsScriptRequest request )
Container for the necessary parameters to execute the DescribeMetadataModelExportsAsScript service method.
| Exception | Condition |
|---|---|
| ResourceNotFoundException | The resource could not be found. |
Returns a paginated list of metadata model exports.
var client = new AmazonDatabaseMigrationServiceClient();
var response = client.DescribeMetadataModelExportsAsScript(new DescribeMetadataModelExportsAsScriptRequest
{
Filters = new List<Filter> {
new Filter {
Name = "request-id",
Values = new List<string> {
"01234567-89ab-cdef-0123-456789abcdef"
}
}
},
Marker = "0123456789abcdefghijklmnopqrs",
MaxRecords = 20,
MigrationProjectIdentifier = "arn:aws:dms:us-east-1:012345678901:migration-project:0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ012"
});
string marker = response.Marker;
List<SchemaConversionRequest> requests = response.Requests;
.NET Framework:
Supported in: 4.7.2 and newer