get_pipeline_execution_logs
Retrieve execution logs for a specific pipeline by providing the pipeline name and execution ID using AWS CodePipeline MCP Server.
Instructions
Get logs for a pipeline execution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
executionId | Yes | Execution ID | |
pipelineName | Yes | Name of the pipeline |
Input Schema (JSON Schema)
{
"properties": {
"executionId": {
"description": "Execution ID",
"type": "string"
},
"pipelineName": {
"description": "Name of the pipeline",
"type": "string"
}
},
"required": [
"pipelineName",
"executionId"
],
"type": "object"
}