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

Transferable

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

Whether the domain name can be transferred to Route 53.

Note: You can transfer only domains that have a value of TRANSFERABLE or Transferable.

Valid values:

TRANSFERABLE: The domain name can be transferred to Route 53.

UNTRANSFERRABLE: The domain name can't be transferred to Route 53.

DONT_KNOW: Reserved for future use.

DOMAIN_IN_OWN_ACCOUNT: The domain already exists in the current Amazon Web Services account.

DOMAIN_IN_ANOTHER_ACCOUNT: the domain exists in another Amazon Web Services account.

PREMIUM_DOMAIN: Premium domain transfer is not supported.

type Transferable =
| "TRANSFERABLE"
| "UNTRANSFERABLE"
| "DONT_KNOW"
| "DOMAIN_IN_OWN_ACCOUNT"
| "DOMAIN_IN_ANOTHER_ACCOUNT"
| "PREMIUM_DOMAIN"

§Type

§
"TRANSFERABLE" | "UNTRANSFERABLE" | "DONT_KNOW" | "DOMAIN_IN_OWN_ACCOUNT" | "DOMAIN_IN_ANOTHER_ACCOUNT" | "PREMIUM_DOMAIN" | cmnP.UnexpectedEnumValue
[src]