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

DeletePackageRequest

import type { DeletePackageRequest } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface DeletePackageRequest {
domain: string;
domainOwner?: string | null;
format: PackageFormat;
namespace?: string | null;
package: string;
repository: string;
}

§Properties

§
domain: string
[src]

The name of the domain that contains the package to delete.

§
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.

§

The format of the requested package to delete.

§
namespace?: string | null
[src]

The namespace of the package to delete. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId. The namespace is required when deleting Maven package versions.
  • The namespace of an npm package is its scope.
  • Python and NuGet packages do not contain corresponding components, packages of those formats do not have a namespace.
§
package: string
[src]

The name of the package to delete.

§
repository: string
[src]

The name of the repository that contains the package to delete.