import type * as securityhub from "@distilled.cloud/aws/securityhub"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `securityhub:DeleteMembers`. * * Deletes the member associations for the specified accounts. * Account-level operation — invoked with the caller's request as-is. * Provide the implementation with * `Effect.provide(AWS.SecurityHub.DeleteMembersHttp)`. * ### Members & Organization * **Example:** Delete Members * ```typescript * // init — account-level binding, no resource argument * const deleteMembers = yield* AWS.SecurityHub.DeleteMembers(); * * // runtime * yield* deleteMembers({ AccountIds: ["111122223333"] }); * ``` * * @binding */ export interface DeleteMembers extends Binding.Service Effect.Effect<(request?: securityhub.DeleteMembersRequest) => Effect.Effect>> { } export declare const DeleteMembers: DeleteMembers; //# sourceMappingURL=DeleteMembers.d.ts.map