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:CancelHandshake`. * * Cancels a pending handshake from the originator side — e.g. withdrawing an invitation before the recipient responds. * 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.CancelHandshakeHttp)`. * ### Handshakes & Invitations * **Example:** Withdraw an Invitation * ```typescript * // init — account-level binding, no resource argument * const cancelHandshake = yield* AWS.Organizations.CancelHandshake(); * * // runtime * const { Handshake } = yield* cancelHandshake({ HandshakeId: handshakeId }); * ``` * * @binding */ export interface CancelHandshake extends Binding.Service Effect.Effect<(request: organizations.CancelHandshakeRequest) => Effect.Effect>> { } export declare const CancelHandshake: CancelHandshake; //# sourceMappingURL=CancelHandshake.d.ts.map