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

RepositoryExternalConnectionInfo

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

Contains information about the external connection of a repository.

interface RepositoryExternalConnectionInfo {
externalConnectionName?: string | null;
packageFormat?: PackageFormat | null;
status?: ExternalConnectionStatus | null;
}

§Properties

§
externalConnectionName?: string | null
[src]

The name of the external connection associated with a repository.

§
packageFormat?: PackageFormat | null
[src]

The package format associated with a repository's external connection. The valid package formats are:

  • npm: A Node Package Manager (npm) package.
  • pypi: A Python Package Index (PyPI) package.
  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.
§

The status of the external connection of a repository. There is one valid value, Available.