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 UpdateOrganizationalUnit operation. Renames the specified organizational unit (OU). The ID and ARN don't change. The child OUs and accounts remain in place, and any attached policies of the OU remain attached.

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

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

Syntax

C#
public class UpdateOrganizationalUnitRequest : AmazonOrganizationsRequest
         IAmazonWebServiceRequest

The UpdateOrganizationalUnitRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Name System.String

Gets and sets the property Name.

The new name that you want to assign to the OU.

The regex pattern that is used to validate this parameter is a string of any of the characters in the ASCII character range.

Public Property OrganizationalUnitId System.String

Gets and sets the property OrganizationalUnitId.

The unique identifier (ID) of the OU that you want to rename. 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 rename an OU. The output confirms the new name:/n/n

To rename an organizational unit


var client = new AmazonOrganizationsClient();
var response = client.UpdateOrganizationalUnit(new UpdateOrganizationalUnitRequest 
{
    Name = "AccountingOU",
    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