将 CreateAccount
与 AWS SDK 或 CLI 配合使用
以下代码示例演示如何使用 CreateAccount
。
- .NET
-
- AWS SDK for .NET
-
注意
查看 GitHub,了解更多信息。查找完整示例,学习如何在 AWS 代码示例存储库
中进行设置和运行。 using System; using System.Threading.Tasks; using Amazon.Organizations; using Amazon.Organizations.Model; /// <summary> /// Creates a new AWS Organizations account. /// </summary> public class CreateAccount { /// <summary> /// Initializes an Organizations client object and uses it to create /// the new account with the name specified in accountName. /// </summary> public static async Task Main() { IAmazonOrganizations client = new AmazonOrganizationsClient(); var accountName = "ExampleAccount"; var email = "someone@example.com"; var request = new CreateAccountRequest { AccountName = accountName, Email = email, }; var response = await client.CreateAccountAsync(request); var status = response.CreateAccountStatus; Console.WriteLine($"The staus of {status.AccountName} is {status.State}."); } }
-
有关 API 的详细信息,请参阅《AWS SDK for .NET API 参考》中的 CreateAccount。
-
- CLI
-
- AWS CLI
-
创建自动属于组织的成员账户
以下示例演示如何创建组织的成员账户。为成员账户配置的名称为 Production Account,电子邮件地址为 susan@example.com。由于未指定 roleName 参数,组织会使用默认名称 OrganizationAccountAccessRole 自动创建 IAM 角色。此外,由于未指定 IamUserAccessToBilling 参数,允许具有足够权限的 IAM 用户或角色访问账户账单数据的设置被设置为默认值 ALLOW。组织会自动向 Susan 发送一封“欢迎使用 AWS”电子邮件:
aws organizations create-account --email
susan@example.com
--account-name"Production Account"
输出包括一个请求对象,以显示状态目前为
IN_PROGRESS
:{ "CreateAccountStatus": { "State": "IN_PROGRESS", "Id": "car-examplecreateaccountrequestid111" } }
稍后,您可以通过向 describe-create-account-status 命令提供 ID 响应值作为 create-account-request-id 参数的值,来查询请求的当前状态。
有关更多信息,请参阅《AWS Organizations 用户指南》中的“在您的组织中创建 AWS 账户”。
-
有关 API 详细信息,请参阅《AWS CLI 命令参考》中的 CreateAccount
。
-
有关 AWS SDK 开发人员指南和代码示例的完整列表,请参阅 将 AWS Organizations 与 AWS 开发工具包配合使用。本主题还包括有关入门的信息以及有关先前的 SDK 版本的详细信息。
AttachPolicy
CreateOrganization