import type * as organizations from "@distilled.cloud/aws/organizations"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `organizations:ListDelegatedServicesForAccount`. * * Lists the Amazon Web Services services for which the specified account is a delegated administrator. * 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.ListDelegatedServicesForAccountHttp)`. * ### Delegated Administration & Trusted Access * **Example:** List an Account's Delegated Services * ```typescript * // init — account-level binding, no resource argument * const listDelegatedServicesForAccount = yield* AWS.Organizations.ListDelegatedServicesForAccount(); * * // runtime * const { DelegatedServices } = yield* listDelegatedServicesForAccount({ * AccountId: accountId, * }); * ``` * * @binding */ export interface ListDelegatedServicesForAccount extends Binding.Service Effect.Effect<(request: organizations.ListDelegatedServicesForAccountRequest) => Effect.Effect>> { } export declare const ListDelegatedServicesForAccount: ListDelegatedServicesForAccount; //# sourceMappingURL=ListDelegatedServicesForAccount.d.ts.map