[][src]Struct rusoto_route53::HostedZoneSummary

pub struct HostedZoneSummary {
    pub hosted_zone_id: String,
    pub name: String,
    pub owner: HostedZoneOwner,
}

In the response to a ListHostedZonesByVPC request, the HostedZoneSummaries element contains one HostedZoneSummary element for each hosted zone that the specified Amazon VPC is associated with. Each HostedZoneSummary element contains the hosted zone name and ID, and information about who owns the hosted zone.

Fields

hosted_zone_id: String

The Route 53 hosted zone ID of a private hosted zone that the specified VPC is associated with.

name: String

The name of the private hosted zone, such as example.com.

owner: HostedZoneOwner

The owner of a private hosted zone that the specified VPC is associated with. The owner can be either an AWS account or an AWS service.

Trait Implementations

impl Clone for HostedZoneSummary[src]

impl Debug for HostedZoneSummary[src]

impl Default for HostedZoneSummary[src]

impl PartialEq<HostedZoneSummary> for HostedZoneSummary[src]

impl StructuralPartialEq for HostedZoneSummary[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, 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> Sealed<T> for T where
    T: ?Sized

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.