ListCreateAccountStatus
Source:
src/AWS/Organizations/ListCreateAccountStatus.ts
Runtime binding for organizations:ListCreateAccountStatus.
Lists the account-creation requests that match the specified states — auditing in-flight and completed account vending.
Account-level operation — Organizations is a management-account-scoped
global service, so the binding takes no resource argument. Provide the
implementation with Effect.provide(AWS.Organizations.ListCreateAccountStatusHttp).
Account Vending
Section titled “Account Vending”// init — account-level binding, no resource argumentconst listCreateAccountStatus = yield* AWS.Organizations.ListCreateAccountStatus();
// runtimeconst { CreateAccountStatuses } = yield* listCreateAccountStatus({ States: ["IN_PROGRESS"],});