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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53domains/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.

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.

Returns:

  • (String)


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

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