Class: Aws::Route53Domains::Types::DomainTransferability
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::DomainTransferability
- 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
-
#transferable ⇒ String
Whether the domain name can be transferred to Route 53.
Instance Attribute Details
#transferable ⇒ String
Whether the domain name can be transferred to Route 53.
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.
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 |