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

CreateRepositoryRequest

import type { CreateRepositoryRequest } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface CreateRepositoryRequest {
description?: string | null;
domain: string;
domainOwner?: string | null;
repository: string;
tags?: Tag[] | null;
upstreams?: UpstreamRepository[] | null;
}

§Properties

§
description?: string | null
[src]

A description of the created repository.

§
domain: string
[src]

The name of the domain that contains the created repository.

§
domainOwner?: string | null
[src]

The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

§
repository: string
[src]

The name of the repository to create.

§
tags?: Tag[] | null
[src]

One or more tag key-value pairs for the repository.

§
upstreams?: UpstreamRepository[] | 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 CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.