組織または組織単位の ARN を取得する - Amazon Elastic Compute Cloud

組織または組織単位の ARN を取得する

組織と組織単位 ARN には、12 桁の管理アカウント番号が含まれています。管理アカウント番号がわからない場合は、組織と組織単位を記述して、それぞれの ARN を取得できます。以下の例では、123456789012 は管理アカウント番号です。

ARN を取得する前に、組織と組織単位を記述する権限が必要です。次のポリシーで、これらの権限が付与されます。

{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "organizations:Describe*" ], "Resource": "*" } ] }
組織の ARN を取得するには

組織の ARN だけを返すには、describe-organization コマンドを使用し、--query パラメータを 'Organization.Arn' に設定します。

aws organizations describe-organization --query 'Organization.Arn'

レスポンスの例

"arn:aws:organizations::123456789012:organization/o-123example"
組織単位の ARN を取得するには

組織単位の ARN だけを返すには、describe-organizational-unit コマンドを使用し、OU ID を指定し、--query パラメータを 'OrganizationalUnit.Arn' に設定します。

aws organizations describe-organizational-unit --organizational-unit-id ou-1234-5example --query 'OrganizationalUnit.Arn'

以下に、応答の例を示します。

"arn:aws:organizations::123456789012:ou/o-123example/ou-1234-5example"