paws.management (version 0.1.0)

organizations_describe_create_account_status: Retrieves the current status of an asynchronous request to create an account

Description

Retrieves the current status of an asynchronous request to create an account.

Usage

organizations_describe_create_account_status(CreateAccountRequestId)

Arguments

CreateAccountRequestId

[required] Specifies the operationId that uniquely identifies the request. You can get the ID from the response to an earlier CreateAccount request, or from the ListCreateAccountStatus operation.

The regex pattern for an create account request ID string requires "car-" followed by from 8 to 32 lower-case letters or digits.

Request syntax

svc$describe_create_account_status(
  CreateAccountRequestId = "string"
)

Details

This operation can be called only from the organization's master account.

Examples

Run this code
# NOT RUN {
# The following example shows how to request the status about a previous
# request to create an account in an organization. This operation can be
# called only by a principal from the organization's master account. In
# the example, the specified "createAccountRequestId" comes from the
# response of the original call to "CreateAccount":
# }
# NOT RUN {
svc$describe_create_account_status(
  CreateAccountRequestId = "car-exampleaccountcreationrequestid"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace