AcceptResourceShareInvitation
Source:
src/AWS/RAM/AcceptResourceShareInvitation.ts
Runtime binding for ram:AcceptResourceShareInvitation.
Accepts an invitation to a resource share from another account, granting this account access to the shared resources.
Account-level operation — the target shares, invitations, and permissions
are chosen per request at runtime, so the binding takes no resource
argument. Provide the implementation with
Effect.provide(AWS.RAM.AcceptResourceShareInvitationHttp).
Invitations
Section titled “Invitations”// init — account-level binding, no resource argumentconst acceptResourceShareInvitation = yield* AWS.RAM.AcceptResourceShareInvitation();
// runtimeconst { resourceShareInvitation } = yield* acceptResourceShareInvitation({ resourceShareInvitationArn: invitationArn, });