SendDataSetNotification
Source:
src/AWS/DataExchange/SendDataSetNotification.ts
Runtime binding for dataexchange:SendDataSetNotification.
Sends a provider-generated notification about the bound data set to
its subscribers (DATA_UPDATE, DATA_DELAY, SCHEMA_CHANGE, or
DEPRECATION) — delivered to each subscriber’s default EventBridge
bus. The data set id is injected from the binding.
Provide the implementation with
Effect.provide(AWS.DataExchange.SendDataSetNotificationHttp).
Notifying Subscribers
Section titled “Notifying Subscribers”const notify = yield* AWS.DataExchange.SendDataSetNotification(dataSet);
// runtime — after publishing a new revisionyield* notify({ Type: "DATA_UPDATE", Comment: "Daily prices refreshed" });