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