Class: Aws::Route53Domains::Types::UpdateDomainNameserversRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::UpdateDomainNameserversRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53domains/types.rb
Overview
Replaces the current set of name servers for the domain with the specified set of name servers. If you use Amazon Route 53 as your DNS service, specify the four name servers in the delegation set for the hosted zone for the domain.
If successful, this operation returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
Constant Summary collapse
- SENSITIVE =
[:fi_auth_key]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the domain that you want to change name servers for.
-
#fi_auth_key ⇒ String
The authorization key for .fi domains.
-
#nameservers ⇒ Array<Types::Nameserver>
A list of new name servers for the domain.
Instance Attribute Details
#domain_name ⇒ String
The name of the domain that you want to change name servers for.
3091 3092 3093 3094 3095 3096 3097 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3091 class UpdateDomainNameserversRequest < Struct.new( :domain_name, :fi_auth_key, :nameservers) SENSITIVE = [:fi_auth_key] include Aws::Structure end |
#fi_auth_key ⇒ String
The authorization key for .fi domains
3091 3092 3093 3094 3095 3096 3097 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3091 class UpdateDomainNameserversRequest < Struct.new( :domain_name, :fi_auth_key, :nameservers) SENSITIVE = [:fi_auth_key] include Aws::Structure end |
#nameservers ⇒ Array<Types::Nameserver>
A list of new name servers for the domain.
3091 3092 3093 3094 3095 3096 3097 |
# File 'lib/aws-sdk-route53domains/types.rb', line 3091 class UpdateDomainNameserversRequest < Struct.new( :domain_name, :fi_auth_key, :nameservers) SENSITIVE = [:fi_auth_key] include Aws::Structure end |