AcceptSubscriptionRequest
Source:
src/AWS/DataZone/AcceptSubscriptionRequest.ts
Runtime binding for datazone:AcceptSubscriptionRequest.
Approves a pending subscription request in the bound domain — the core of an automated approval workflow. The domain id is injected from the binding.
Provide the implementation with
Effect.provide(AWS.DataZone.AcceptSubscriptionRequestHttp).
Subscription Workflows
Section titled “Subscription Workflows”// init — bind the operation to the domainconst acceptSubscriptionRequest = yield* AWS.DataZone.AcceptSubscriptionRequest(domain);
// runtimeyield* acceptSubscriptionRequest({ identifier: requestId, decisionComment: "auto-approved" });