StartImagePipelineExecution
Source:
src/AWS/ImageBuilder/StartImagePipelineExecution.ts
Runtime binding for imagebuilder:StartImagePipelineExecution.
Manually kicks off a build of the bound ImagePipeline — the
pipeline’s ARN is injected and the idempotency clientToken is generated
automatically. Returns the imageBuildVersionArn of the image being
created, for use with GetImage / CancelImageCreation. Provide the
implementation with
Effect.provide(AWS.ImageBuilder.StartImagePipelineExecutionHttp).
Running Builds
Section titled “Running Builds”// init — bind the operation to the pipelineconst startBuild = yield* AWS.ImageBuilder.StartImagePipelineExecution( pipeline,);
// runtimeconst { imageBuildVersionArn } = yield* startBuild();yield* Effect.log(`building ${imageBuildVersionArn}`);