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

PutActionRevisionInput

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

Represents the input of a PutActionRevision action.

interface PutActionRevisionInput {
actionName: string;
actionRevision: ActionRevision;
pipelineName: string;
stageName: string;
}

§Properties

§
actionName: string
[src]

The name of the action that processes the revision.

§
actionRevision: ActionRevision
[src]

Represents information about the version (or revision) of an action.

§
pipelineName: string
[src]

The name of the pipeline that starts processing the revision to the source.

§
stageName: string
[src]

The name of the stage that contains the action that acts on the revision.