AWS SDK Version 3 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.

This is the response object from the DescribeMetadataModelExportsToTarget operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.DatabaseMigrationService.Model.DescribeMetadataModelExportsToTargetResponse

Namespace: Amazon.DatabaseMigrationService.Model
Assembly: AWSSDK.DatabaseMigrationService.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeMetadataModelExportsToTargetResponse : AmazonWebServiceResponse

The DescribeMetadataModelExportsToTargetResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Marker System.String

Gets and sets the property Marker.

Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.

Public Property Requests System.Collections.Generic.List<Amazon.DatabaseMigrationService.Model.SchemaConversionRequest>

Gets and sets the property Requests.

A paginated list of metadata model exports.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

Returns a paginated list of metadata model exports.

Describe Metadata Model Exports To Target


var client = new AmazonDatabaseMigrationServiceClient();
var response = client.DescribeMetadataModelExportsToTarget(new DescribeMetadataModelExportsToTargetRequest 
{
    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:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5