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

DomainSummary

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

Information about a domain, including its name, Amazon Resource Name (ARN), and status. The ListDomains operation returns a list of DomainSummary objects.

interface DomainSummary {
arn?: string | null;
createdTime?: Date | number | null;
encryptionKey?: string | null;
name?: string | null;
owner?: string | null;
status?: DomainStatus | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the domain.

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

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

§
encryptionKey?: string | null
[src]

The key used to encrypt the domain.

§
name?: string | null
[src]

The name of the domain.

§
owner?: string | null
[src]

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

§
status?: DomainStatus | null
[src]

A string that contains the status of the domain. The valid values are:

  • Active
    
  • Deleted