Struct rusoto_route53::DelegationSet[][src]

pub struct DelegationSet {
    pub caller_reference: Option<String>,
    pub id: Option<String>,
    pub name_servers: Vec<String>,
}

A complex type that lists the name servers in a delegation set, as well as the CallerReference and the ID for the delegation set.

Fields

The value that you specified for CallerReference when you created the reusable delegation set.

The ID that Amazon Route 53 assigns to a reusable delegation set.

A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.

Trait Implementations

impl Default for DelegationSet
[src]

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

impl Debug for DelegationSet
[src]

Formats the value using the given formatter. Read more

impl Clone for DelegationSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DelegationSet
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations