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

SourceRevision

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

Information about the version (or revision) of a source artifact that initiated a pipeline execution.

interface SourceRevision {
actionName: string;
revisionId?: string | null;
revisionSummary?: string | null;
revisionUrl?: string | null;
}

§Properties

§
actionName: string
[src]

The name of the action that processed the revision to the source artifact.

§
revisionId?: string | null
[src]

The system-generated unique ID that identifies the revision number of the artifact.

§
revisionSummary?: string | null
[src]

Summary information about the most recent revision of the artifact. For GitHub and AWS CodeCommit repositories, the commit message. For Amazon S3 buckets or actions, the user-provided content of a codepipeline-artifact-revision-summary key specified in the object metadata.

§
revisionUrl?: string | null
[src]

The commit ID for the artifact revision. For artifacts stored in GitHub or AWS CodeCommit repositories, the commit ID is linked to a commit details page.