HEX
Server: Apache
System: Linux vmi1259262.contaboserver.net 5.15.0-170-generic #180-Ubuntu SMP Fri Jan 9 16:10:31 UTC 2026 x86_64
User: aqarnomics (1008)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //usr/share/doc/awscli/examples/organizations/enable-policy-type.rst
**To enable the use of a policy type in a root**

The following example shows how to enable the service control policy (SCP) policy type in a root: ::

	aws organizations enable-policy-type --root-id r-examplerootid111 --policy-type SERVICE_CONTROL_POLICY
		
The output shows a root object with a policyTypes response element showing that SCPs are now enabled: ::

	{
		"Root": {
			"PolicyTypes": [
				{
					"Status":"ENABLED",
					"Type":"SERVICE_CONTROL_POLICY"
				}
			],
			"Id": "r-examplerootid111",
			"Name": "Root",
			"Arn": "arn:aws:organizations::111111111111:root/o-exampleorgid/r-examplerootid111"
		}
	}