Class: Aws::Organizations::Types::CreateOrganizationRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-organizations/types.rb

Overview

Note:

When making an API call, you may pass CreateOrganizationRequest data as a hash:

{
  feature_set: "ALL", # accepts ALL, CONSOLIDATED_BILLING
}

Instance Attribute Summary collapse

Instance Attribute Details

#feature_setString

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*.

[1]: docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-cb-only [2]: docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-all

Returns:

  • (String)


456
457
458
459
# File 'lib/aws-sdk-organizations/types.rb', line 456

class CreateOrganizationRequest < Struct.new(
  :feature_set)
  include Aws::Structure
end