

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

# 를 사용하여 조직 단위(OU)의 세부 정보 보기 AWS Organizations
<a name="orgs_view_ou"></a>

[AWS Organizations 콘솔](https://console.aws.amazon.com/organizations/v2)에서 조직의 관리 계정에 로그인하면 조직의 OU 세부 정보를 확인할 수 있습니다.

**최소 권한**  
조직 단위(OU)에 대한 세부 정보를 보려면 다음과 같은 권한이 있어야 합니다.  
`organizations:DescribeOrganizationalUnit`
`organizations:DescribeOrganization` – Organizations 콘솔을 사용하는 경우에만 필요합니다.
`organizations:ListOrganizationsUnitsForParent` – Organizations 콘솔을 사용하는 경우에만 필요합니다.
`organizations:ListRoots` – Organizations 콘솔을 사용하는 경우에만 필요합니다.

------
#### [ AWS Management Console ]<a name="view_details_ou_v2"></a>

**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의 이름(라디오 버튼 아님)을 선택합니다. 원하는 OU가 다른 OU의 하위 항목이라면 상위 OU 옆에 있는 삼각형 아이콘을 선택해 확장한 후 계층 구조의 다음 레벨에 있는 OU를 확인합니다. 원하는 OU를 찾을 때까지 반복합니다.

   **조직 단위 세부 정보(Organizational unit details)** 상자에 OU에 대한 정보가 나타납니다.

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

**OU 세부 정보를 보려면**  
다음 명령을 사용하여 OU의 세부 정보를 볼 수 있습니다.
+ AWS CLI, AWS SDKs 
  + [list-roots](https://docs.aws.amazon.com/cli/latest/reference/organizations/list-roots.html) 
  + [list-children](https://docs.aws.amazon.com/cli/latest/reference/organizations/list-children.html) 
  + [describe-organizational-unit](https://docs.aws.amazon.com/cli/latest/reference/organizations/describe-organizational-unit.html) 

  다음 예제에서는 AWS CLI를 사용해 OU에서 ID를 찾는 방법을 보여줍니다. 먼저 `list-roots` 명령으로 계층 구조를 트래버스한 다음 루트에서 `list-children`을 수행하고 원하는 대상을 찾을 때까지 각 하위 항목에 대해 반복적으로 수행하여 OU ID를 찾습니다.

  ```
  $ aws organizations list-roots
  {
      "Roots": [
          {
              "Id": "r-a1b2",
              "Arn": "arn:aws:organizations::123456789012:root/o-aa111bb222/r-a1b2",
              "Name": "Root",
              "PolicyTypes": []
          }
      ]
  }
  $ aws organizations list-children --parent-id r-a1b2 --child-type ORGANIZATIONAL_UNIT
  {
      "Children": [
          {
              "Id": "ou-a1b2-f6g7h111",
              "Type": "ORGANIZATIONAL_UNIT"
          }
      ]
  }
  ```

  OU의 ID를 찾았다면, 다음 예제에서 OU에 대한 세부 정보를 검색하는 방법을 보여 줍니다.

  ```
  $ aws organizations describe-organizational-unit --organizational-unit-id ou-a1b2-f6g7h111
  {
      "OrganizationalUnit": {
          "Id": "ou-a1b2-f6g7h111",
          "Arn": "arn:aws:organizations::123456789012:ou/o-aa111bb222/ou-a1b2-f6g7h111",
          "Name": "Production-Apps",
          "Path": "o-aa111bb222/r-a1b2/ou-a1b2-f6g7h111/"
      }
  }
  ```
+ AWS SDKs
  +  [ListRoots](https://docs.aws.amazon.com/organizations/latest/APIReference/API_ListRoots.html)
  +  [ListChildren](https://docs.aws.amazon.com/organizations/latest/APIReference/API_ListChildren.html)
  +  [DescribeOrganizationalUnit](https://docs.aws.amazon.com/organizations/latest/APIReference/API_DescribeOrganizationalUnit.html)

------