[][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 PartialEq<ListResourceRecordSetsResponse> for ListResourceRecordSetsResponse[src]

impl Default for ListResourceRecordSetsResponse[src]

impl Clone for ListResourceRecordSetsResponse[src]

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

Performs copy-assignment from source. Read more

impl Debug for ListResourceRecordSetsResponse[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

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