Skip to content

ListDelegatedServicesForAccount

Source: src/AWS/Organizations/ListDelegatedServicesForAccount.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).

// init — account-level binding, no resource argument
const listDelegatedServicesForAccount = yield* AWS.Organizations.ListDelegatedServicesForAccount();
// runtime
const { DelegatedServices } = yield* listDelegatedServicesForAccount({
AccountId: accountId,
});