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:InviteMembers`. * * Invites the specified accounts to associate with this account as Security Hub members. * Account-level operation — invoked with the caller's request as-is. * Provide the implementation with * `Effect.provide(AWS.SecurityHub.InviteMembersHttp)`. * ### Members & Organization * **Example:** Invite Members * ```typescript * // init — account-level binding, no resource argument * const inviteMembers = yield* AWS.SecurityHub.InviteMembers(); * * // runtime * yield* inviteMembers({ AccountIds: ["111122223333"] }); * ``` * * @binding */ export interface InviteMembers extends Binding.Service Effect.Effect<(request?: securityhub.InviteMembersRequest) => Effect.Effect>> { } export declare const InviteMembers: InviteMembers; //# sourceMappingURL=InviteMembers.d.ts.map