文件範例儲存庫中有更多 AWS SDK可用的範例。 AWS SDK
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
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詳細資訊,請參閱 參考 CreateAccount中的 。 AWS SDK for .NET API
-
- CLI
-
- AWS CLI
-
若要建立自動屬於組織一部分的成員帳戶
下列範例顯示如何在組織中建立成員帳戶。成員帳戶是以 susan@example.com 的名稱生產帳戶和電子郵件地址來設定。組織會使用預設名稱 自動建立IAM角色, OrganizationAccountAccessRole 因為未指定 roleName 參數。此外,允許具有足夠許可IAM的使用者或角色存取帳戶帳單資料的設定會設定為預設值 ,ALLOW因為未指定 IamUserAccessToBilling 參數。組織會自動傳送「歡迎 AWS」電子郵件給 Susan:
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 使用者指南 中的在您的組織中建立 AWS 帳戶。
-
如需API詳細資訊,請參閱 命令參考 CreateAccount
中的 。 AWS CLI
-
AttachPolicy
CreateOrganization