[][src]Struct rusoto_route53::ListHostedZonesByVPCResponse

pub struct ListHostedZonesByVPCResponse {
    pub hosted_zone_summaries: Vec<HostedZoneSummary>,
    pub max_items: String,
    pub next_token: Option<String>,
}

Fields

hosted_zone_summaries: Vec<HostedZoneSummary>

A list that 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.

max_items: String

The value that you specified for MaxItems in the most recent ListHostedZonesByVPC request.

next_token: Option<String>

The value that you specified for NextToken in the most recent ListHostedZonesByVPC request.

Trait Implementations

impl Clone for ListHostedZonesByVPCResponse[src]

impl Debug for ListHostedZonesByVPCResponse[src]

impl Default for ListHostedZonesByVPCResponse[src]

impl PartialEq<ListHostedZonesByVPCResponse> for ListHostedZonesByVPCResponse[src]

impl StructuralPartialEq for ListHostedZonesByVPCResponse[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, 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.