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

CodeArtifacts

import type { CodeArtifacts } from "https://aws-api.deno.dev/v0.4/services/codegurureviewer.ts?docs=full";

Code artifacts are source code artifacts and build artifacts used in a repository analysis or a pull request review.

  • Source code artifacts are source code files in a Git repository that are compressed into a .zip file.
  • Build artifacts are .jar or .class files that are compressed in a .zip file.
interface CodeArtifacts {
BuildArtifactsObjectKey?: string | null;
SourceCodeArtifactsObjectKey: string;
}

§Properties

§
BuildArtifactsObjectKey?: string | null
[src]

The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

§
SourceCodeArtifactsObjectKey: string
[src]

The S3 object key for a source code .zip file. This is required for all code reviews.