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

Artifact

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

Represents information about an artifact that is worked on by actions in the pipeline.

interface Artifact {
location?: ArtifactLocation | null;
name?: string | null;
revision?: string | null;
}

§Properties

§
location?: ArtifactLocation | null
[src]

The location of an artifact.

§
name?: string | null
[src]

The artifact's name.

§
revision?: string | null
[src]

The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).