GetImagePipeline
Source:
src/AWS/ImageBuilder/GetImagePipeline.ts
Runtime binding for imagebuilder:GetImagePipeline.
Reads the bound ImagePipeline’s current configuration and state —
schedule, status, recipe/infrastructure wiring, and the timestamps of the
latest and next scheduled runs. The pipeline’s ARN is injected from the
binding. Provide the implementation with
Effect.provide(AWS.ImageBuilder.GetImagePipelineHttp).
Observing Pipelines
Section titled “Observing Pipelines”// init — bind the operation to the pipelineconst getPipeline = yield* AWS.ImageBuilder.GetImagePipeline(pipeline);
// runtimeconst { imagePipeline } = yield* getPipeline();yield* Effect.log( `${imagePipeline?.name}: ${imagePipeline?.status}, last run ${imagePipeline?.dateLastRun}`,);