

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# でアカウントの詳細を表示する 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 マネジメントコンソール ]<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/ja_jp/organizations/latest/userguide/images/console-expand.png) を選択して展開し、子 OU を表示します。アカウントが見つかるまで繰り返します。

   [**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)

------