

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

# 에서 계정 세부 정보 보기 AWS Organizations
<a name="orgs_view_account"></a>

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

**최소 권한**  
의 세부 정보를 보려면 다음 권한이 AWS 계정있어야 합니다.  
`organizations:DescribeAccount`
`organizations:DescribeOrganization` – Organizations 콘솔을 사용하는 경우에만 필요합니다.
`organizations:ListAccounts` – Organizations 콘솔을 사용하는 경우에만 필요합니다.

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

**의 세부 정보를 보려면 AWS 계정**

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 ![\[Gray cloud icon representing cloud computing or storage services.\]](http://docs.aws.amazon.com/ko_kr/organizations/latest/userguide/images/console-expand.png)옆에 있는 삼각형 아이콘을 선택해 확장해야 할 수 있습니다. 계정을 찾을 때까지 반복합니다.

   **계정 세부 정보(Account details)** 상자에 계정에 대한 정보가 표시됩니다.

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

**의 세부 정보를 보려면 AWS 계정**  
다음 명령을 사용하여 계정의 세부 정보를 볼 수 있습니다.
+ AWS CLI:
  +  [list-accounts](https://docs.aws.amazon.com/cli/latest/reference/organizations/list-accounts.html) – 조직 내 *모든* 계정의 세부 정보를 나열합니다.
  +  [describe-account](https://docs.aws.amazon.com/cli/latest/reference/organizations/describe-account.html) – 지정한 계정의 세부 정보만 나열합니다.

  두 명령 모두 각 계정에 대해 동일한 세부 정보를 응답에 포함하여 반환합니다.

  다음 예제에서는 지정한 계정의 세부 정보를 검색하는 방법을 보여줍니다.

  ```
  $ aws organizations describe-account --account-id 123456789012
  
  {
      "Account": {
          "Id": "123456789012",
          "Arn": "arn:aws:organizations::123456789012:account/o-aa111bb222/123456789012",
          "Email": "admin@example.com",
          "Name": "Example.com Organization's Management Account",
          "Status": "ACTIVE",
          "JoinedMethod": "INVITED",
          "JoinedTimestamp": "2020-11-20T09:04:20.346000-08:00",
          "Paths": [
              "o-aa111bb222/r-a1b2/123456789012/"
          ]
      }
  }
  ```
+ AWS SDKs
  + [ListAccounts](https://docs.aws.amazon.com/organizations/latest/APIReference/API_ListAccounts.html)
  + [DescribeAccount](https://docs.aws.amazon.com/organizations/latest/APIReference/PI_DescribeAccount.html)

------