paws.management (version 0.1.0)

organizations_create_organization: Creates an AWS organization

Description

Creates an AWS organization. The account whose user is calling the CreateOrganization operation automatically becomes the master account of the new organization.

Usage

organizations_create_organization(FeatureSet)

Arguments

FeatureSet

Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality.

  • CONSOLIDATED\_BILLING: All member accounts have their bills consolidated to and paid by the master account. For more information, see Consolidated billing in the AWS Organizations User Guide.

  • ALL: In addition to all the features supported by the consolidated billing feature set, the master account can also apply any type of policy to any member account in the organization. For more information, see All features in the AWS Organizations User Guide.

Request syntax

svc$create_organization(
  FeatureSet = "ALL"|"CONSOLIDATED_BILLING"
)

Details

This operation must be called using credentials from the account that is to become the new organization's master account. The principal must also have the relevant IAM permissions.

By default (or if you set the FeatureSet parameter to ALL), the new organization is created with all features enabled and service control policies automatically enabled in the root. If you instead choose to create the organization supporting only the consolidated billing features by setting the FeatureSet parameter to CONSOLIDATED_BILLING\", then no policy types are enabled by default and you cannot use organization policies.

Examples

Run this code
# NOT RUN {
# Bill wants to create an organization using credentials from account
# 111111111111. The following example shows that the account becomes the
# master account in the new organization. Because he does not specify a
# feature set, the new organization defaults to all features enabled and
# service control policies enabled on the root:
# 
# 
# }
# NOT RUN {
svc$create_organization()
# }
# NOT RUN {
# In the following example, Bill creates an organization using credentials
# from account 111111111111, and configures the organization to support
# only the consolidated billing feature set:
# 
# 
# }
# NOT RUN {
svc$create_organization(
  FeatureSet = "CONSOLIDATED_BILLING"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab