

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 를 사용하여 조직 단위(OU) 이름 바꾸기 AWS Organizations
<a name="rename_ou"></a>

조직의 관리 계정에 로그인하면 OU 이름을 바꿀 수 있습니다. 이렇게 하려면 다음 단계를 완료하세요.

**최소 권한**  
 조직 루트에 있는 OU의 이름을 바꾸려면 다음과 같은 권한이 있어야 합니다.  
`organizations:DescribeOrganization` – Organizations 콘솔을 사용하는 경우에만 필요합니다.
`organizations:UpdateOrganizationalUnit`

------
#### [ AWS Management Console ]

**OU의 이름을 바꾸려면**

1. [AWS Organizations 콘솔](https://console.aws.amazon.com/organizations/v2)에 로그인합니다. 조직의 관리 계정에서 IAM 사용자로 로그인하거나 IAM 역할을 맡거나 루트 사용자로 로그인([권장되지 않음](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#lock-away-credentials))해야 합니다.

1. **[AWS 계정](https://console.aws.amazon.com/organizations/v2/home/accounts)** 페이지에서 이름을 바꿀 [OU로 이동](navigate_tree.md)한 다음, 아래의 단계 중 하나를 수행합니다.
   + 이름을 변경할 OU 옆에 있는 라디오 버튼 ![\[Blue circular icon with a white checkmark symbol in the center.\]](http://docs.aws.amazon.com/ko_kr/organizations/latest/userguide/images/radio-button-selected.png)을 선택합니다. 그런 다음 **작업(Actions)** 메뉴의 **조직 단위(Organizational unit)**에서 **이름 바꾸기(Rename)**를 선택합니다.
   + OU의 이름을 선택하여 OU의 세부 정보 페이지에 액세스합니다. 페이지 상단에서 **이름 바꾸기(Rename)**를 선택합니다.

1. **조직 단위 이름 바꾸기(Rename organizational unit)** 대화 상자에서 새 이름을 입력하고 **변경 사항 저장(Save changes)**을 선택합니다.

------
#### [ AWS CLI & AWS SDKs ]

**OU의 이름을 바꾸려면**  
다음 명령 중 하나를 사용하여 OU 이름 바꿀 수 있습니다.
+ AWS CLI: [update-organizational-unit](https://docs.aws.amazon.com/cli/latest/reference/organizations/update-organizational-unit.html)

  다음 예제에서는 OU의 이름을 바꾸는 방법을 보여 줍니다.

  ```
  $ aws organizations update-organizational-unit \
      --organizational-unit-id ou-a1b2-f6g7h222 \
      --name "Renamed-OU"
  {
      "OrganizationalUnit": {
          "Id": "ou-a1b2-f6g7h222",
          "Arn": "arn:aws:organizations::123456789012:ou/o-aa111bb222/ou-a1b2-f6g7h222",
          "Name": "Renamed-OU",
          "Path": "o-aa111bb222/r-a1b2/ou-a1b2-f6g7h222/"
      }
  }
  ```
+ AWS SDKs: [UpdateOrganizationalUnit](https://docs.aws.amazon.com/organizations/latest/APIReference/API_UpdateOrganizationalUnit.html)

------