Gets a summary of the most recent executions for a pipeline.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, ListPipelineExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, ListPipelineExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new ListPipelineExecutionsCommand(input); const response = await client.send(command);
ListPipelineExecutionsCommandInput for command's input shape.
input
ListPipelineExecutionsCommandOutput for command's response shape.
response
config for CodePipelineClient's config shape.
config
Gets a summary of the most recent executions for a pipeline.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, ListPipelineExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, ListPipelineExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new ListPipelineExecutionsCommand(input); const response = await client.send(command);
ListPipelineExecutionsCommandInput for command's
input
shape.ListPipelineExecutionsCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.