Skip to main content

organizations_features

Creates, updates, deletes, gets or lists an organizations_features resource.

Overview

Nameorganizations_features
TypeResource
Idaws.iam.organizations_features

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
organization_idstringThe unique identifier (ID) of an organization.
enabled_featuresarraySpecifies the features that are currently available in your organization.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_organizations_featuresselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;