stop_pipeline_execution
Halt an AWS CodePipeline execution by specifying the pipeline name and execution ID. Optionally provide a reason for stopping the pipeline.
Instructions
Stop a pipeline execution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
executionId | Yes | Execution ID | |
pipelineName | Yes | Name of the pipeline | |
reason | No | Optional reason for stopping |
Input Schema (JSON Schema)
{
"properties": {
"executionId": {
"description": "Execution ID",
"type": "string"
},
"pipelineName": {
"description": "Name of the pipeline",
"type": "string"
},
"reason": {
"description": "Optional reason for stopping",
"type": "string"
}
},
"required": [
"pipelineName",
"executionId"
],
"type": "object"
}