deleteImagePipeline
inline suspend fun ImagebuilderClient.deleteImagePipeline(crossinline block: DeleteImagePipelineRequest.Builder.() -> Unit): DeleteImagePipelineResponse
Deletes an image pipeline. Images that the pipeline created aren't deleted - remove those separately with DeleteImage. You can delete a pipeline while a build that it started is still running. The build continues independently.
Samples
// The following example deletes an image pipeline.
val resp = imagebuilderClient.deleteImagePipeline {
imagePipelineArn = "arn:aws:imagebuilder:us-west-2:111122223333:image-pipeline/my-example-pipeline"
}Content copied to clipboard