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

DomainDescription

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

Information about a domain. A domain is a container for repositories. When you create a domain, it is empty until you add one or more repositories.

interface DomainDescription {
arn?: string | null;
assetSizeBytes?: number | null;
createdTime?: Date | number | null;
encryptionKey?: string | null;
name?: string | null;
owner?: string | null;
repositoryCount?: number | null;
s3BucketArn?: string | null;
status?: DomainStatus | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the domain.

§
assetSizeBytes?: number | null
[src]

The total size of all assets in the domain.

§
createdTime?: Date | number | null
[src]

A timestamp that represents the date and time the domain was created.

§
encryptionKey?: string | null
[src]

The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain.

§
name?: string | null
[src]

The name of the domain.

§
owner?: string | null
[src]

The AWS account ID that owns the domain.

§
repositoryCount?: number | null
[src]

The number of repositories in the domain.

§
s3BucketArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store package assets in the domain.

§
status?: DomainStatus | null
[src]

The current status of a domain. The valid values are

  • Active
    
  • Deleted