Struct rusoto_route53domains::UpdateDomainNameserversRequest [] [src]

pub struct UpdateDomainNameserversRequest {
    pub domain_name: String,
    pub fi_auth_key: Option<String>,
    pub nameservers: Vec<Nameserver>,
}

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.

Fields

The name of the domain that you want to change name servers for.

The authorization key for .fi domains

A list of new name servers for the domain.

Trait Implementations

impl Default for UpdateDomainNameserversRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateDomainNameserversRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateDomainNameserversRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations