AWS SDK Version 4 for .NET
API Reference

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.

Note:

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

Syntax

C#
public abstract DescribeMetadataModelExportsAsScriptResponse DescribeMetadataModelExportsAsScript(
         DescribeMetadataModelExportsAsScriptRequest request
)

Parameters

request
Type: Amazon.DatabaseMigrationService.Model.DescribeMetadataModelExportsAsScriptRequest

Container for the necessary parameters to execute the DescribeMetadataModelExportsAsScript service method.

Return Value


The response from the DescribeMetadataModelExportsAsScript service method, as returned by DatabaseMigrationService.

Exceptions

ExceptionCondition
ResourceNotFoundException The resource could not be found.

Examples

Returns a paginated list of metadata model exports.

Describe Metadata Model Exports As Script


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;

            

Version Information

.NET Framework:
Supported in: 4.7.2 and newer

See Also