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

RepositoryDescription

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

The details of a repository stored in AWS CodeArtifact. A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets. Repositories are polyglot—a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the npm CLI, the Maven CLI (mvn), and pip. You can create up to 100 repositories per AWS account.

interface RepositoryDescription {
administratorAccount?: string | null;
arn?: string | null;
description?: string | null;
domainName?: string | null;
domainOwner?: string | null;
externalConnections?: RepositoryExternalConnectionInfo[] | null;
name?: string | null;
upstreams?: UpstreamRepositoryInfo[] | null;
}

§Properties

§
administratorAccount?: string | null
[src]

The 12-digit account number of the AWS account that manages the repository.

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the repository.

§
description?: string | null
[src]

A text description of the repository.

§
domainName?: string | null
[src]

The name of the domain that contains the repository.

§
domainOwner?: string | null
[src]

The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

§
externalConnections?: RepositoryExternalConnectionInfo[] | null
[src]

An array of external connections associated with the repository.

§
name?: string | null
[src]

The name of the repository.

§
upstreams?: UpstreamRepositoryInfo[] | null
[src]

A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.