CancelHandshake
Source:
src/AWS/Organizations/CancelHandshake.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
Section titled “Handshakes & Invitations”// init — account-level binding, no resource argumentconst cancelHandshake = yield* AWS.Organizations.CancelHandshake();
// runtimeconst { Handshake } = yield* cancelHandshake({ HandshakeId: handshakeId });