[][src]Struct rusoto_route53::HostedZone

pub struct HostedZone {
    pub caller_reference: String,
    pub config: Option<HostedZoneConfig>,
    pub id: String,
    pub linked_service: Option<LinkedService>,
    pub name: String,
    pub resource_record_set_count: Option<i64>,
}

A complex type that contains general information about the hosted zone.

Fields

caller_reference: String

The value that you specified for CallerReference when you created the hosted zone.

config: Option<HostedZoneConfig>

A complex type that includes the Comment and PrivateZone elements. If you omitted the HostedZoneConfig and Comment elements from the request, the Config and Comment elements don't appear in the response.

id: String

The ID that Amazon Route 53 assigned to the hosted zone when you created it.

linked_service: Option<LinkedService>

If the hosted zone was created by another service, the service that created the hosted zone. When a hosted zone is created by another service, you can't edit or delete it using Route 53.

name: String

The name of the domain. For public hosted zones, this is the name that you have registered with your DNS registrar.

For information about how to specify characters other than a-z, 0-9, and - (hyphen) and how to specify internationalized domain names, see CreateHostedZone.

resource_record_set_count: Option<i64>

The number of resource record sets in the hosted zone.

Trait Implementations

impl PartialEq<HostedZone> for HostedZone[src]

impl Default for HostedZone[src]

impl Clone for HostedZone[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HostedZone[src]

Auto Trait Implementations

impl Send for HostedZone

impl Sync for HostedZone

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self