organizations_features
Creates, updates, deletes, gets or lists an organizations_features resource.
Overview
| Name | organizations_features |
| Type | Resource |
| Id | aws.iam.organizations_features |
Fields
The following fields are returned by SELECT queries:
- list_organizations_features
| Name | Datatype | Description |
|---|---|---|
organization_id | string | The unique identifier (ID) of an organization. |
enabled_features | array | Specifies the features that are currently available in your organization. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_organizations_features | select | region | Lists the centralized root access features enabled for your organization. For more information, see Centrally manage root access for member accounts. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_organizations_features
Lists the centralized root access features enabled for your organization. For more information, see Centrally manage root access for member accounts.
SELECT
organization_id,
enabled_features
FROM aws.iam.organizations_features
WHERE region = '{{ region }}' -- required
;