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.

Lists all of the DMS attributes for a customer account. These attributes include DMS quotas for the account and a unique account identifier in a particular DMS region. DMS quotas include a list of resource quotas supported by the account, such as the number of replication instances allowed. The description for each resource quota, includes the quota name, current usage toward that quota, and the quota's maximum value. DMS uses the unique account identifier to name each artifact used by DMS in the given region.

This command does not take any parameters.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeAccountAttributesAsync.

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

Syntax

C#
public virtual DescribeAccountAttributesResponse DescribeAccountAttributes(
         DescribeAccountAttributesRequest request
)

Parameters

request
Type: Amazon.DatabaseMigrationService.Model.DescribeAccountAttributesRequest

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

Return Value


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

Examples

Lists all of the AWS DMS attributes for a customer account. The attributes include AWS DMS quotas for the account, such as the number of replication instances allowed. The description for a quota includes the quota name, current usage toward that quota, and the quota's maximum value. This operation does not take any parameters.

Describe acount attributes


var client = new AmazonDatabaseMigrationServiceClient();
var response = client.DescribeAccountAttributes(new DescribeAccountAttributesRequest 
{
});

List<AccountQuota> accountQuotas = response.AccountQuotas;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also