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

ListPackageVersionDependenciesResult

import type { ListPackageVersionDependenciesResult } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface ListPackageVersionDependenciesResult {
dependencies?: PackageDependency[] | null;
format?: PackageFormat | null;
namespace?: string | null;
nextToken?: string | null;
package?: string | null;
version?: string | null;
versionRevision?: string | null;
}

§Properties

§
dependencies?: PackageDependency[] | null
[src]

The returned list of PackageDependency objects.

§
format?: PackageFormat | null
[src]

A format that specifies the type of the package that contains the returned dependencies.

§
namespace?: string | null
[src]

The namespace of the package version that contains the returned dependencies. The package version component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package version is its groupId.
  • The namespace of an npm package version is its scope.
  • Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
§
nextToken?: string | null
[src]

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

§
package?: string | null
[src]

The name of the package that contains the returned package versions dependencies.

§
version?: string | null
[src]

The version of the package that is specified in the request.

§
versionRevision?: string | null
[src]

The current revision associated with the package version.