[−][src]Struct rusoto_route53::ListHostedZonesRequest
A request to retrieve a list of the public and private hosted zones that are associated with the current AWS account.
Fields
delegation_set_id: Option<String>
If you're using reusable delegation sets and you want to list all of the hosted zones that are associated with a reusable delegation set, specify the ID of that reusable delegation set.
marker: Option<String>
If the value of IsTruncated
in the previous response was true
, you have more hosted zones. To get more hosted zones, submit another ListHostedZones
request.
For the value of marker
, specify the value of NextMarker
from the previous response, which is the ID of the first hosted zone that Amazon Route 53 will return if you submit another request.
If the value of IsTruncated
in the previous response was false
, there are no more hosted zones to get.
max_items: Option<String>
(Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If you have more than maxitems
hosted zones, the value of IsTruncated
in the response is true
, and the value of NextMarker
is the hosted zone ID of the first hosted zone that Route 53 will return if you submit another request.
Trait Implementations
impl PartialEq<ListHostedZonesRequest> for ListHostedZonesRequest
[src]
fn eq(&self, other: &ListHostedZonesRequest) -> bool
[src]
fn ne(&self, other: &ListHostedZonesRequest) -> bool
[src]
impl Default for ListHostedZonesRequest
[src]
fn default() -> ListHostedZonesRequest
[src]
impl Clone for ListHostedZonesRequest
[src]
fn clone(&self) -> ListHostedZonesRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ListHostedZonesRequest
[src]
Auto Trait Implementations
impl Send for ListHostedZonesRequest
impl Sync for ListHostedZonesRequest
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