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:AcceptHandshake`. * * Accepts a pending handshake — e.g. an invitation to join an organization, called from the invited member account. * 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.AcceptHandshakeHttp)`. * ### Handshakes & Invitations * **Example:** Accept an Invitation * ```typescript * // init — account-level binding, no resource argument * const acceptHandshake = yield* AWS.Organizations.AcceptHandshake(); * * // runtime * const { Handshake } = yield* acceptHandshake({ HandshakeId: handshakeId }); * ``` * * @binding */ export interface AcceptHandshake extends Binding.Service Effect.Effect<(request: organizations.AcceptHandshakeRequest) => Effect.Effect>> { } export declare const AcceptHandshake: AcceptHandshake; //# sourceMappingURL=AcceptHandshake.d.ts.map