Lists the action executions that have occurred in a pipeline.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, ListActionExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, ListActionExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new ListActionExecutionsCommand(input); const response = await client.send(command);
ListActionExecutionsCommandInput for command's input shape.
input
ListActionExecutionsCommandOutput for command's response shape.
response
config for CodePipelineClient's config shape.
config
Lists the action executions that have occurred in a pipeline.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, ListActionExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, ListActionExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new ListActionExecutionsCommand(input); const response = await client.send(command);
ListActionExecutionsCommandInput for command's
input
shape.ListActionExecutionsCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.