Skip to content

List Create Account Status

organizations_list_create_account_status R Documentation

Lists the account creation requests that match the specified status that is currently being tracked for the organization

Description

Lists the account creation requests that match the specified status that is currently being tracked for the organization.

When calling List* operations, always check the NextToken response parameter value, even if you receive an empty result set. These operations can occasionally return an empty set of results even when more results are available. Continue making requests until NextToken returns null. A null NextToken value indicates that you have retrieved all available results.

You can only call this operation from the management account or a member account that is a delegated administrator.

Usage

organizations_list_create_account_status(States, NextToken, MaxResults)

Arguments

States

A list of one or more states that you want included in the response. If this parameter isn't present, all requests are included in the response.

NextToken

The parameter for receiving additional results if you receive a NextToken response in a previous request. A NextToken response indicates that more output is available. Set this parameter to the value of the previous call's NextToken response to indicate where the output should continue from.

MaxResults

The maximum number of items to return in the response. If more results exist than the specified MaxResults value, a token is included in the response so that you can retrieve the remaining results.

Value

A list with the following syntax:

list(
  CreateAccountStatuses = list(
    list(
      Id = "string",
      AccountName = "string",
      State = "IN_PROGRESS"|"SUCCEEDED"|"FAILED",
      RequestedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      CompletedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      AccountId = "string",
      GovCloudAccountId = "string",
      FailureReason = "ACCOUNT_LIMIT_EXCEEDED"|"EMAIL_ALREADY_EXISTS"|"INVALID_ADDRESS"|"INVALID_EMAIL"|"CONCURRENT_ACCOUNT_MODIFICATION"|"INTERNAL_FAILURE"|"GOVCLOUD_ACCOUNT_ALREADY_EXISTS"|"MISSING_BUSINESS_VALIDATION"|"FAILED_BUSINESS_VALIDATION"|"PENDING_BUSINESS_VALIDATION"|"INVALID_IDENTITY_FOR_BUSINESS_VALIDATION"|"UNKNOWN_BUSINESS_VALIDATION"|"MISSING_PAYMENT_INSTRUMENT"|"INVALID_PAYMENT_INSTRUMENT"|"UPDATE_EXISTING_RESOURCE_POLICY_WITH_TAGS_NOT_SUPPORTED"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_create_account_status(
  States = list(
    "IN_PROGRESS"|"SUCCEEDED"|"FAILED"
  ),
  NextToken = "string",
  MaxResults = 123
)

Examples

## Not run: 
# The following example shows a user requesting a list of only the
# completed account creation requests made for the current organization:
svc$list_create_account_status(
  States = list(
    "SUCCEEDED"
  )
)

# The following example shows a user requesting a list of only the
# in-progress account creation requests made for the current organization:
svc$list_create_account_status(
  States = list(
    "IN_PROGRESS"
  )
)

## End(Not run)