Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, StartPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, StartPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new StartPipelineExecutionCommand(input); const response = await client.send(command);
StartPipelineExecutionCommandInput for command's input shape.
input
StartPipelineExecutionCommandOutput for command's response shape.
response
config for CodePipelineClient's config shape.
config
Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, StartPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, StartPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new StartPipelineExecutionCommand(input); const response = await client.send(command);
StartPipelineExecutionCommandInput for command's
input
shape.StartPipelineExecutionCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.