approve_action
Manually approve or reject pipeline actions in AWS CodePipeline by specifying pipeline, stage, action, token, and decision. Optional comments can be included for clarity.
Instructions
Approve or reject a manual approval action
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actionName | Yes | Name of the action | |
approved | Yes | Boolean indicating approval or rejection | |
comments | No | Optional comments | |
pipelineName | Yes | Name of the pipeline | |
stageName | Yes | Name of the stage | |
token | Yes | Approval token |
Input Schema (JSON Schema)
{
"properties": {
"actionName": {
"description": "Name of the action",
"type": "string"
},
"approved": {
"description": "Boolean indicating approval or rejection",
"type": "boolean"
},
"comments": {
"description": "Optional comments",
"type": "string"
},
"pipelineName": {
"description": "Name of the pipeline",
"type": "string"
},
"stageName": {
"description": "Name of the stage",
"type": "string"
},
"token": {
"description": "Approval token",
"type": "string"
}
},
"required": [
"pipelineName",
"stageName",
"actionName",
"token",
"approved"
],
"type": "object"
}