

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 從管理帳戶檢視組織的詳細資訊
<a name="orgs_view_org"></a>

在 [AWS Organizations 主控台](https://console.aws.amazon.com/organizations/v2)登入組織的管理帳戶時，您可以檢視組織的詳細資訊。

**最低許可**  
若要檢視組織的詳細資訊，您必須擁有以下許可：  
`organizations:DescribeOrganization`

------
#### [ 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. 瀏覽至 **[Settings](https://console.aws.amazon.com/organizations/v2/home/settings)** (設定) 頁面。此頁面會顯示有關組織的詳細資訊，包括組織 ID、帳戶名稱和指派給組織管理帳戶的電子郵件地址。

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

**檢視您的組織的詳細資訊**  
您可以使用下列其中一項命令來檢視組織的詳細資訊：
+ AWS CLI: [describe-organization](https://docs.aws.amazon.com/cli/latest/reference/organizations/describe-organization.html) 

  以下範例顯示此命令輸出中包含的資訊。

  ```
  $ aws organizations describe-organization
  {
      "Organization": {
          "Id": "o-aa111bb222",
          "Arn": "arn:aws:organizations::123456789012:organization/o-aa111bb222",
          "FeatureSet": "ALL",
          "MasterAccountArn": "arn:aws:organizations::128716708097:account/o-aa111bb222/123456789012",
          "MasterAccountId": "123456789012",
          "MasterAccountEmail": "admin@example.com",
          "AvailablePolicyTypes": [ ...DEPRECATED - DO NOT USE... ]
      }
  }
  ```
**重要**  
該 `AvailablePolicyTypes` 欄位已棄用，並且不包含有關在您的組織中啟用政策的準確資訊。若要查看實際針對組織啟用的準確且完整的政策類型清單，請使用 `ListRoots` 命令，如以下章節 AWS CLI 部分中所述。
+ AWS SDKs：[DescribeOrganization](https://docs.aws.amazon.com/organizations/latest/APIReference/API_DescribeOrganization.html)

------