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 DescribeOrganizationalUnit operation. Retrieves information about an organizational unit (OU).

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.DescribeOrganizationalUnitRequest

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

Syntax

C#
public class DescribeOrganizationalUnitRequest : AmazonOrganizationsRequest
         IAmazonWebServiceRequest

The DescribeOrganizationalUnitRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property OrganizationalUnitId System.String

Gets and sets the property OrganizationalUnitId.

The unique identifier (ID) of the organizational unit that you want details about. You can get the ID from the ListOrganizationalUnitsForParent operation.

The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.

Examples

The following example shows how to request details about an OU:/n/n

To get information about an organizational unit


var client = new AmazonOrganizationsClient();
var response = client.DescribeOrganizationalUnit(new DescribeOrganizationalUnitRequest 
{
    OrganizationalUnitId = "ou-examplerootid111-exampleouid111"
});

OrganizationalUnit organizationalUnit = response.OrganizationalUnit;

            

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