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

CurrentRevision

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

Represents information about a current revision.

interface CurrentRevision {
changeIdentifier: string;
created?: Date | number | null;
revision: string;
revisionSummary?: string | null;
}

§Properties

§
changeIdentifier: string
[src]

The change identifier for the current revision.

§
created?: Date | number | null
[src]

The date and time when the most recent revision of the artifact was created, in timestamp format.

§
revision: string
[src]

The revision ID of the current version of an artifact.

§
revisionSummary?: string | null
[src]

The summary of the most recent revision of the artifact.