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 DeleteOrganizationalUnit operation. Deletes an organizational unit (OU) from a root or another OU. You must first remove all accounts and child OUs from the OU that you want to delete.

This operation can be called only from the organization's management account.

Inheritance Hierarchy

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

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

Syntax

C#
public class DeleteOrganizationalUnitRequest : AmazonOrganizationsRequest
         IAmazonWebServiceRequest

The DeleteOrganizationalUnitRequest 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 to delete. 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 delete an OU. The example assumes that you previously removed all accounts and other OUs from the OU:

To delete an organization unit


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


            

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