organizations:ListParents

List

organizations:ListParents is a List access-level action in the organizations service. Grants permission to list the root or organizational units (OUs) that serve as the immediate parent of a child OU or account

Resource types

ARNs that organizations:ListParents can be scoped to in an IAM policy.

arn:${Partition}:organizations::${Account}:account/o-${OrganizationId}/${AccountId}
account
arn:${Partition}:organizations::${Account}:ou/o-${OrganizationId}/ou-${OrganizationalUnitId}
organizationalunit

Condition keys

Keys you can use in the Condition block of a policy that grants organizations:ListParents.

aws:ResourceTag/${TagKey} String

Filters access by the tags associated with the resource

Example IAM policy

A minimal policy that allows organizations:ListParents. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowOrganizationsListParents",
      "Effect": "Allow",
      "Action": "organizations:ListParents",
      "Resource": "*"
    }
  ]
}

Related actions in organizations

View all organizations actions →