ListSubscriptions
Source:
src/AWS/DataZone/ListSubscriptions.ts
Runtime binding for datazone:ListSubscriptions.
Lists subscriptions in the bound domain, optionally by status. The domain id is injected from the binding.
Provide the implementation with
Effect.provide(AWS.DataZone.ListSubscriptionsHttp).
Subscription Workflows
Section titled “Subscription Workflows”// init — bind the operation to the domainconst listSubscriptions = yield* AWS.DataZone.ListSubscriptions(domain);
// runtimeconst subs = yield* listSubscriptions({ status: "APPROVED" });