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

BuildArtifacts

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

Information about build output artifacts.

interface BuildArtifacts {
artifactIdentifier?: string | null;
bucketOwnerAccess?: BucketOwnerAccess | null;
encryptionDisabled?: boolean | null;
location?: string | null;
md5sum?: string | null;
overrideArtifactName?: boolean | null;
sha256sum?: string | null;
}

§Properties

§
artifactIdentifier?: string | null
[src]

An identifier for this artifact definition.

§
bucketOwnerAccess?: BucketOwnerAccess | null
[src]
§
encryptionDisabled?: boolean | null
[src]

Information that tells you if encryption for build artifacts is disabled.

§
location?: string | null
[src]

Information about the location of the build artifacts.

§
md5sum?: string | null
[src]

The MD5 hash of the build artifact.

You can use this hash along with a checksum tool to confirm file integrity and authenticity.

Note: This value is available only if the build project's packaging value is set to ZIP.

§
overrideArtifactName?: boolean | null
[src]

If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

§
sha256sum?: string | null
[src]

The SHA-256 hash of the build artifact.

You can use this hash along with a checksum tool to confirm file integrity and authenticity.

Note: This value is available only if the build project's packaging value is set to ZIP.