GetDataSourceRun
Source:
src/AWS/DataZone/GetDataSourceRun.ts
Runtime binding for datazone:GetDataSourceRun.
Reads the status of a data source run in the bound domain. The domain id is injected from the binding.
Provide the implementation with
Effect.provide(AWS.DataZone.GetDataSourceRunHttp).
Data Source Runs
Section titled “Data Source Runs”// init — bind the operation to the domainconst getDataSourceRun = yield* AWS.DataZone.GetDataSourceRun(domain);
// runtimeconst run = yield* getDataSourceRun({ identifier: runId });if (run.status === "FAILED") { yield* Effect.logError(run.errorMessage); }