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.

Inheritance Hierarchy

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

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

Syntax

C#
public class DescribeTableStatisticsResponse : AmazonWebServiceResponse

The DescribeTableStatisticsResponse 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.

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

Public Property ReplicationTaskArn System.String

Gets and sets the property ReplicationTaskArn.

The Amazon Resource Name (ARN) of the replication task.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property TableStatistics System.Collections.Generic.List<Amazon.DatabaseMigrationService.Model.TableStatistics>

Gets and sets the property TableStatistics.

The table statistics.

Examples

Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted.

Describe table statistics


var client = new AmazonDatabaseMigrationServiceClient();
var response = client.DescribeTableStatistics(new DescribeTableStatisticsRequest 
{
    Marker = "",
    MaxRecords = 123,
    ReplicationTaskArn = ""
});

string marker = response.Marker;
string replicationTaskArn = response.ReplicationTaskArn;
List<TableStatistics> tableStatistics = response.TableStatistics;

            

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