| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Network.AWS.Route53.ListHostedZones
Description
To retrieve a list of your hosted zones, send a GET request to the '2013-04-01/hostedzone' resource. The response to this request includes a HostedZones element with
zero, one, or multiple HostedZone child elements. By default, the list of
hosted zones is displayed on a single page. You can control the length of the
page that is displayed by using the MaxItems parameter. You can use the Marker
parameter to control the hosted zone that the list begins with.
Amazon Route 53 returns a maximum of 100 items. If you set MaxItems to a value greater than 100, Amazon Route 53 returns only the first 100.
http://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZones.html
- data ListHostedZones
- listHostedZones :: ListHostedZones
- lhzDelegationSetId :: Lens' ListHostedZones (Maybe Text)
- lhzMarker :: Lens' ListHostedZones (Maybe Text)
- lhzMaxItems :: Lens' ListHostedZones (Maybe Text)
- data ListHostedZonesResponse
- listHostedZonesResponse :: Bool -> Text -> ListHostedZonesResponse
- lhzrHostedZones :: Lens' ListHostedZonesResponse [HostedZone]
- lhzrIsTruncated :: Lens' ListHostedZonesResponse Bool
- lhzrMarker :: Lens' ListHostedZonesResponse (Maybe Text)
- lhzrMaxItems :: Lens' ListHostedZonesResponse Text
- lhzrNextMarker :: Lens' ListHostedZonesResponse (Maybe Text)
Request
data ListHostedZones Source
Instances
| Eq ListHostedZones | |
| Ord ListHostedZones | |
| Read ListHostedZones | |
| Show ListHostedZones | |
| ToXML ListHostedZones | |
| AWSRequest ListHostedZones | |
| AWSPager ListHostedZones | |
| ToQuery ListHostedZones | |
| ToXMLRoot ListHostedZones | |
| ToPath ListHostedZones | |
| ToHeaders ListHostedZones | |
| type Sv ListHostedZones = Route53 | |
| type Rs ListHostedZones = ListHostedZonesResponse |
Request constructor
listHostedZones :: ListHostedZones Source
ListHostedZones constructor.
The fields accessible through corresponding lenses are:
Request lenses
lhzMarker :: Lens' ListHostedZones (Maybe Text) Source
If the request returned more than one page of results, submit another request
and specify the value of NextMarker from the last response in the marker
parameter to get the next page of results.
lhzMaxItems :: Lens' ListHostedZones (Maybe Text) Source
Specify the maximum number of hosted zones to return per page of results.
Response
Response constructor
listHostedZonesResponse Source
Arguments
| :: Bool | |
| -> Text | |
| -> ListHostedZonesResponse |
ListHostedZonesResponse constructor.
The fields accessible through corresponding lenses are:
Response lenses
lhzrHostedZones :: Lens' ListHostedZonesResponse [HostedZone] Source
A complex type that contains information about the hosted zones associated with the current AWS account.
lhzrIsTruncated :: Lens' ListHostedZonesResponse Bool Source
A flag indicating whether there are more hosted zones to be listed. If your
results were truncated, you can make a follow-up request for the next page of
results by using the Marker element.
Valid Values: true | false
lhzrMarker :: Lens' ListHostedZonesResponse (Maybe Text) Source
If the request returned more than one page of results, submit another request
and specify the value of NextMarker from the last response in the marker
parameter to get the next page of results.
lhzrMaxItems :: Lens' ListHostedZonesResponse Text Source
The maximum number of hosted zones to be included in the response body. If
the number of hosted zones associated with this AWS account exceeds MaxItems,
the value of 'ListHostedZonesResponse$IsTruncated' in the response is true.
Call ListHostedZones again and specify the value of 'ListHostedZonesResponse$NextMarker' in the 'ListHostedZonesRequest$Marker' element to get the next page of results.
lhzrNextMarker :: Lens' ListHostedZonesResponse (Maybe Text) Source
Indicates where to continue listing hosted zones. If 'ListHostedZonesResponse$IsTruncated' is true, make another request to ListHostedZones and include the value of
the NextMarker element in the Marker element to get the next page of results.