[][src]Struct rusoto_route53::ListResourceRecordSetsResponse

pub struct ListResourceRecordSetsResponse {
    pub is_truncated: bool,
    pub max_items: String,
    pub next_record_identifier: Option<String>,
    pub next_record_name: Option<String>,
    pub next_record_type: Option<String>,
    pub resource_record_sets: Vec<ResourceRecordSet>,
}

A complex type that contains list information for the resource record set.

Fields

is_truncated: bool

A flag that indicates whether more resource record sets remain to be listed. If your results were truncated, you can make a follow-up pagination request by using the NextRecordName element.

max_items: String

The maximum number of records you requested.

next_record_identifier: Option<String>

Resource record sets that have a routing policy other than simple: If results were truncated for a given DNS name and type, the value of SetIdentifier for the next resource record set that has the current DNS name and type.

For information about routing policies, see Choosing a Routing Policy in the Amazon Route 53 Developer Guide.

next_record_name: Option<String>

If the results were truncated, the name of the next record in the list.

This element is present only if IsTruncated is true.

next_record_type: Option<String>

If the results were truncated, the type of the next record in the list.

This element is present only if IsTruncated is true.

resource_record_sets: Vec<ResourceRecordSet>

Information about multiple resource record sets.

Trait Implementations

impl Clone for ListResourceRecordSetsResponse[src]

impl Debug for ListResourceRecordSetsResponse[src]

impl Default for ListResourceRecordSetsResponse[src]

impl PartialEq<ListResourceRecordSetsResponse> for ListResourceRecordSetsResponse[src]

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