import type * as account from "@distilled.cloud/aws/account"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `account:GetAccountInformation`. * * Reads the calling account's metadata — account id, account name, creation * date, and account state. Account Management is an account singleton, so the * binding takes no resource argument. Provide the implementation with * `Effect.provide(AWS.Account.GetAccountInformationHttp)`. * ### Reading Account Settings * **Example:** Read the Account's Name and State * ```typescript * // init — account-level binding, no resource argument * const getAccountInformation = yield* AWS.Account.GetAccountInformation(); * * // runtime * const info = yield* getAccountInformation(); * console.log(info.AccountId, info.AccountState); * ``` * * @binding */ export interface GetAccountInformation extends Binding.Service Effect.Effect<(request?: account.GetAccountInformationRequest) => Effect.Effect>> { } export declare const GetAccountInformation: GetAccountInformation; //# sourceMappingURL=GetAccountInformation.d.ts.map