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

DomainInfo

import type { DomainInfo } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";

Contains general information about a domain.

interface DomainInfo {
arn?: string | null;
description?: string | null;
name: string;
}

§Properties

§
arn?: string | null
[src]

The ARN of the domain.

§
description?: string | null
[src]

The description of the domain provided through "RegisterDomain".

§
name: string
[src]

The name of the domain. This name is unique within the account.

§

The status of the domain:

  • REGISTERED – The domain is properly registered and available. You can use this domain for registering types and creating new workflow executions.
  • DEPRECATED – The domain was deprecated using "DeprecateDomain", but is still in use. You should not create new workflow executions in this domain.