Provides the response to a manual approval request to AWS CodePipeline. Valid responses include Approved and Rejected.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, PutApprovalResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, PutApprovalResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new PutApprovalResultCommand(input); const response = await client.send(command);
PutApprovalResultCommandInput for command's input shape.
input
PutApprovalResultCommandOutput for command's response shape.
response
config for CodePipelineClient's config shape.
config
Provides the response to a manual approval request to AWS CodePipeline. Valid responses include Approved and Rejected.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, PutApprovalResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, PutApprovalResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new PutApprovalResultCommand(input); const response = await client.send(command);
PutApprovalResultCommandInput for command's
input
shape.PutApprovalResultCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.