Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PutApprovalResultInput

import type { PutApprovalResultInput } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";

Represents the input of a PutApprovalResult action.

interface PutApprovalResultInput {
actionName: string;
pipelineName: string;
stageName: string;
token: string;
}

§Properties

§
actionName: string
[src]

The name of the action for which approval is requested.

§
pipelineName: string
[src]

The name of the pipeline that contains the action.

§

Represents information about the result of the approval request.

§
stageName: string
[src]

The name of the stage that contains the action.

§
token: string
[src]

The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the "GetPipelineState" action. It is used to validate that the approval request corresponding to this token is still valid.