[−][src]Struct rusoto_route53::ListHostedZonesByNameRequest
Retrieves a list of the public and private hosted zones that are associated with the current AWS account in ASCII order by domain name.
Fields
dns_name: Option<String>
(Optional) For your first request to ListHostedZonesByName
, include the dnsname
parameter only if you want to specify the name of the first hosted zone in the response. If you don't include the dnsname
parameter, Amazon Route 53 returns all of the hosted zones that were created by the current AWS account, in ASCII order. For subsequent requests, include both dnsname
and hostedzoneid
parameters. For dnsname
, specify the value of NextDNSName
from the previous response.
hosted_zone_id: Option<String>
(Optional) For your first request to ListHostedZonesByName
, do not include the hostedzoneid
parameter.
If you have more hosted zones than the value of maxitems
, ListHostedZonesByName
returns only the first maxitems
hosted zones. To get the next group of maxitems
hosted zones, submit another request to ListHostedZonesByName
and include both dnsname
and hostedzoneid
parameters. For the value of hostedzoneid
, specify the value of the NextHostedZoneId
element from the previous response.
max_items: Option<String>
The maximum number of hosted zones to be included in the response body for this request. If you have more than maxitems
hosted zones, then the value of the IsTruncated
element in the response is true, and the values of NextDNSName
and NextHostedZoneId
specify the first hosted zone in the next group of maxitems
hosted zones.
Trait Implementations
impl PartialEq<ListHostedZonesByNameRequest> for ListHostedZonesByNameRequest
[src]
fn eq(&self, other: &ListHostedZonesByNameRequest) -> bool
[src]
fn ne(&self, other: &ListHostedZonesByNameRequest) -> bool
[src]
impl Default for ListHostedZonesByNameRequest
[src]
impl Clone for ListHostedZonesByNameRequest
[src]
fn clone(&self) -> ListHostedZonesByNameRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ListHostedZonesByNameRequest
[src]
Auto Trait Implementations
impl Send for ListHostedZonesByNameRequest
impl Sync for ListHostedZonesByNameRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self