Class: Aws::Route53Domains::Types::TransferDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::TransferDomainRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53domains/types.rb
Overview
The TransferDomain request includes the following elements.
Constant Summary collapse
- SENSITIVE =
[:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact]
Instance Attribute Summary collapse
-
#admin_contact ⇒ Types::ContactDetail
Provides detailed contact information.
-
#auth_code ⇒ String
The authorization code for the domain.
-
#auto_renew ⇒ Boolean
Indicates whether the domain will be automatically renewed (true) or not (false).
-
#billing_contact ⇒ Types::ContactDetail
Provides detailed contact information.
-
#domain_name ⇒ String
The name of the domain that you want to transfer to Route 53.
-
#duration_in_years ⇒ Integer
The number of years that you want to register the domain for.
-
#idn_lang_code ⇒ String
Reserved for future use.
-
#nameservers ⇒ Array<Types::Nameserver>
Contains details for the host and glue IP addresses.
-
#privacy_protect_admin_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries.
-
#privacy_protect_billing_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries.
-
#privacy_protect_registrant_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries.
-
#privacy_protect_tech_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries.
-
#registrant_contact ⇒ Types::ContactDetail
Provides detailed contact information.
-
#tech_contact ⇒ Types::ContactDetail
Provides detailed contact information.
Instance Attribute Details
#admin_contact ⇒ Types::ContactDetail
Provides detailed contact information.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#auth_code ⇒ String
The authorization code for the domain. You get this value from the current registrar.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#auto_renew ⇒ Boolean
Indicates whether the domain will be automatically renewed (true) or not (false). Auto renewal only takes effect after the account is charged.
Default: true
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#billing_contact ⇒ Types::ContactDetail
Provides detailed contact information.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#domain_name ⇒ String
The name of the domain that you want to transfer to Route 53. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see [Domains that You Can Register with Amazon Route 53] in the *Amazon Route 53 Developer Guide*.
The domain name can contain only the following characters:
-
Letters a through z. Domain names are not case sensitive.
-
Numbers 0 through 9.
-
Hyphen (-). You can’t specify a hyphen at the beginning or end of a label.
-
Period (.) to separate the labels in the name, such as the ‘.` in `example.com`.
[1]: docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#duration_in_years ⇒ Integer
The number of years that you want to register the domain for. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain.
Default: 1
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#idn_lang_code ⇒ String
Reserved for future use.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#nameservers ⇒ Array<Types::Nameserver>
Contains details for the host and glue IP addresses.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#privacy_protect_admin_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries. If you specify ‘true`, WHOIS (“who is”) queries return contact information for the registrar, the phrase “REDACTED FOR PRIVACY”, or “On behalf of <domain name> owner.”.
<note markdown=“1”> While some domains may allow different privacy settings per contact, we recommend specifying the same privacy setting for all contacts.
</note>
Default: ‘true`
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#privacy_protect_billing_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries. If you specify ‘true`, WHOIS (“who is”) queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify `false`, WHOIS queries return the information that you entered for the billing contact.
<note markdown=“1”> You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
</note>
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#privacy_protect_registrant_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries. If you specify ‘true`, WHOIS (“who is”) queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify `false`, WHOIS queries return the information that you entered for the registrant contact (domain owner).
<note markdown=“1”> You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
</note>
Default: ‘true`
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#privacy_protect_tech_contact ⇒ Boolean
Whether you want to conceal contact information from WHOIS queries. If you specify ‘true`, WHOIS (“who is”) queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify `false`, WHOIS queries return the information that you entered for the technical contact.
<note markdown=“1”> You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
</note>
Default: ‘true`
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#registrant_contact ⇒ Types::ContactDetail
Provides detailed contact information.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |
#tech_contact ⇒ Types::ContactDetail
Provides detailed contact information.
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2811 class TransferDomainRequest < Struct.new( :domain_name, :idn_lang_code, :duration_in_years, :nameservers, :auth_code, :auto_renew, :admin_contact, :registrant_contact, :tech_contact, :privacy_protect_admin_contact, :privacy_protect_registrant_contact, :privacy_protect_tech_contact, :billing_contact, :privacy_protect_billing_contact) SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact, :billing_contact] include Aws::Structure end |