PutApprovalResult
Source:
src/AWS/CodePipeline/PutApprovalResult.ts
Runtime binding for codepipeline:PutApprovalResult — answers a manual
approval action with Approved or Rejected. The approval token comes
from the action’s latestExecution in GetPipelineState.
Approvals
Section titled “Approvals”const putApproval = yield* AWS.CodePipeline.PutApprovalResult(pipeline);
yield* putApproval({ stageName: "Approve", actionName: "ManualApproval", token: approvalToken, result: { status: "Approved", summary: "LGTM" },});