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 DescribeAccount operation. Retrieves Organizations-related information about the specified account.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an Amazon Web Services service.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Organizations.AmazonOrganizationsRequest
      Amazon.Organizations.Model.DescribeAccountRequest

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

Syntax

C#
public class DescribeAccountRequest : AmazonOrganizationsRequest
         IAmazonWebServiceRequest

The DescribeAccountRequest type exposes the following members

Constructors

NameDescription
Public Method DescribeAccountRequest()

Properties

NameTypeDescription
Public Property AccountId System.String

Gets and sets the property AccountId.

The unique identifier (ID) of the Amazon Web Services account that you want information about. You can get the ID from the ListAccounts or ListAccountsForParent operations.

The regex pattern for an account ID string requires exactly 12 digits.

Examples

The following example shows a user in the master account (111111111111) asking for details about account 555555555555:

To get the details about an account


var client = new AmazonOrganizationsClient();
var response = client.DescribeAccount(new DescribeAccountRequest 
{
    AccountId = "555555555555"
});

Account account = response.Account;

            

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