[][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 Clone for HostedZone[src]

impl Debug for HostedZone[src]

impl Default for HostedZone[src]

impl PartialEq<HostedZone> for HostedZone[src]

impl StructuralPartialEq for HostedZone[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.