GetExecution
Source:
src/AWS/BCMDataExports/GetExecution.ts
Runtime binding for bcm-data-exports:GetExecution.
Bind this operation to an Export to read the status of one export
execution (delivery run) — its status code, reason, and timestamps — from
inside a function runtime. Useful for delivery monitors that alert when a
refresh fails. Provide the implementation with
Effect.provide(AWS.BCMDataExports.GetExecutionHttp).
Monitoring Executions
Section titled “Monitoring Executions”// init — bind the operation to the exportconst getExecution = yield* AWS.BCMDataExports.GetExecution(cur);
// runtimeconst result = yield* getExecution({ ExecutionId: executionId });const status = result.ExecutionStatus?.StatusCode;