Class: Aws::Route53Domains::Types::DomainTransferability

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-route53domains/types.rb

Overview

A complex type that contains information about whether the specified domain can be transferred to Route 53.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#transferableString

Whether the domain name can be transferred to Route 53.

<note markdown=“1”> You can transfer only domains that have a value of ‘TRANSFERABLE` or `Transferable`.

</note>

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.

Returns:

  • (String)


959
960
961
962
963
# File 'lib/aws-sdk-route53domains/types.rb', line 959

class DomainTransferability < Struct.new(
  :transferable)
  SENSITIVE = []
  include Aws::Structure
end