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.

Container for the parameters to the DescribeAccountAttributes operation. Describes attributes of your Amazon Web Services account. The following are the supported account attributes:

The order of the elements in the response, including those within nested structures, might vary. Applications should not assume the elements appear in a particular order.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.AmazonEC2Request
      Amazon.EC2.Model.DescribeAccountAttributesRequest

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

Syntax

C#
public class DescribeAccountAttributesRequest : AmazonEC2Request
         IAmazonWebServiceRequest

The DescribeAccountAttributesRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property AttributeNames System.Collections.Generic.List<System.String>

Gets and sets the property AttributeNames.

The account attribute names.

Examples

This example describes the supported-platforms attribute for your AWS account.

To describe a single attribute for your AWS account


var client = new AmazonEC2Client();
var response = client.DescribeAccountAttributes(new DescribeAccountAttributesRequest 
{
    AttributeNames = new List<string> {
        "supported-platforms"
    }
});

List<AccountAttribute> accountAttributes = response.AccountAttributes;

            

This example describes the attributes for your AWS account.

To describe all attributes for your AWS account


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

List<AccountAttribute> accountAttributes = response.AccountAttributes;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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