import type * as guardduty from "@distilled.cloud/aws/guardduty"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `guardduty:ListOrganizationAdminAccounts`. * * Lists the accounts delegated as GuardDuty administrator for the organization. * Account-level operation — invoked with the caller's request as-is. * Provide the implementation with * `Effect.provide(AWS.GuardDuty.ListOrganizationAdminAccountsHttp)`. * ### Organization Administration * **Example:** List Delegated Administrators * ```typescript * // init * // init — account-level binding, no resource argument * const listOrganizationAdminAccounts = yield* AWS.GuardDuty.ListOrganizationAdminAccounts(); * * // runtime * const { AdminAccounts } = yield* listOrganizationAdminAccounts(); * ``` * * @binding */ export interface ListOrganizationAdminAccounts extends Binding.Service Effect.Effect<(request?: guardduty.ListOrganizationAdminAccountsRequest) => Effect.Effect>> { } export declare const ListOrganizationAdminAccounts: ListOrganizationAdminAccounts; //# sourceMappingURL=ListOrganizationAdminAccounts.d.ts.map