AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

This is the response object from the CreateOrganization operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Organizations.Model.CreateOrganizationResponse

Namespace: Amazon.Organizations.Model
Assembly: AWSSDK.Organizations.dll
Version: 3.x.y.z

Syntax

C#
public class CreateOrganizationResponse : AmazonWebServiceResponse

The CreateOrganizationResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Organization Amazon.Organizations.Model.Organization

Gets and sets the property Organization.

A structure that contains details about the newly created organization.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

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:

To create a new organization with all features enabled


var client = new AmazonOrganizationsClient();
var response = client.CreateOrganization(new CreateOrganizationRequest 
{
});

Organization organization = response.Organization;

            

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:

To create a new organization with consolidated billing features only


var client = new AmazonOrganizationsClient();
var response = client.CreateOrganization(new CreateOrganizationRequest 
{
    FeatureSet = "CONSOLIDATED_BILLING"
});

Organization organization = response.Organization;

            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5