Enabling a policy type - Amazon Organizations
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Enabling a policy type

Before you can create and attach a policy to your organization, you must enable that policy type for use. Enabling a policy type is a one-time task on the organization root. You can enable a policy type from only the organization's management account or a member account designated as a delegated administrator.

Minimum permissions

To enable a policy type, you need permission to run the following actions:

  • organizations:EnablePolicyType

  • organizations:DescribeOrganization – required only when using the Organizations console

  • organizations:ListRoots – required only when using the Organizations console

Amazon Web Services Management Console
To enable a policy type
  1. Sign in to the Amazon Organizations console. You must sign in as an IAM user, assume an IAM role, or sign in as the root user (not recommended) in the organization’s management account.

  2. On the Policies page, choose the name of the policy type that you want to enable.

  3. On the policy type page, choose Enable policy type.

    The page is replaced by a list of the available policies of the specified type.

Amazon CLI & Amazon SDKs
To enable a policy type

You can use one of the following commands to enable a policy type:

  • Amazon CLI: enable-policy-type

    The following example shows how to enable backup policies for your organization. Note that you must specify the ID of your organization's root.

    $ aws organizations enable-policy-type \ --root-id r-a1b2 \ --policy-type BACKUP_POLICY { "Root": { "Id": "r-a1b2", "Arn": "arn:aws-cn:organizations::123456789012:root/o-aa111bb222/r-a1b2", "Name": "Root", "PolicyTypes": [ { "Type": "BACKUP_POLICY", "Status": "ENABLED" } ] } }

    The list of PolicyTypes in the output now includes the specified policy type with the Status of ENABLED.

  • Amazon SDKs: EnablePolicyType