| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.Route53.ListHostedZones
Description
Retrieves a list of the public and private hosted zones that are associated with the current AWS account. The response includes a HostedZones child element for each hosted zone.
Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of hosted zones, you can use the maxitems parameter to list them in groups of up to 100.
This operation returns paginated results.
Synopsis
- listHostedZones :: ListHostedZones
- data ListHostedZones
- lhzDelegationSetId :: Lens' ListHostedZones (Maybe ResourceId)
- lhzMarker :: Lens' ListHostedZones (Maybe Text)
- lhzMaxItems :: Lens' ListHostedZones (Maybe Text)
- listHostedZonesResponse :: Int -> Bool -> Text -> ListHostedZonesResponse
- data ListHostedZonesResponse
- lhzrsMarker :: Lens' ListHostedZonesResponse (Maybe Text)
- lhzrsNextMarker :: Lens' ListHostedZonesResponse (Maybe Text)
- lhzrsResponseStatus :: Lens' ListHostedZonesResponse Int
- lhzrsHostedZones :: Lens' ListHostedZonesResponse [HostedZone]
- lhzrsIsTruncated :: Lens' ListHostedZonesResponse Bool
- lhzrsMaxItems :: Lens' ListHostedZonesResponse Text
Creating a Request
listHostedZones :: ListHostedZones Source #
Creates a value of ListHostedZones with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lhzDelegationSetId- 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.lhzMarker- If the value ofIsTruncatedin the previous response wastrue, you have more hosted zones. To get more hosted zones, submit anotherListHostedZonesrequest. For the value ofmarker, specify the value ofNextMarkerfrom 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 ofIsTruncatedin the previous response wasfalse, there are no more hosted zones to get.lhzMaxItems- (Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If you have more thanmaxitemshosted zones, the value ofIsTruncatedin the response istrue, and the value ofNextMarkeris the hosted zone ID of the first hosted zone that Amazon Route 53 will return if you submit another request.
data ListHostedZones Source #
A request to retrieve a list of the public and private hosted zones that are associated with the current AWS account.
See: listHostedZones smart constructor.
Instances
Request Lenses
lhzDelegationSetId :: Lens' ListHostedZones (Maybe ResourceId) Source #
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.
lhzMarker :: Lens' ListHostedZones (Maybe Text) Source #
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.
lhzMaxItems :: Lens' ListHostedZones (Maybe Text) Source #
(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 Amazon Route 53 will return if you submit another request.
Destructuring the Response
listHostedZonesResponse Source #
Arguments
| :: Int | |
| -> Bool | |
| -> Text | |
| -> ListHostedZonesResponse |
Creates a value of ListHostedZonesResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lhzrsMarker- For the second and subsequent calls toListHostedZones,Markeris the value that you specified for themarkerparameter in the request that produced the current response.lhzrsNextMarker- IfIsTruncatedistrue, the value ofNextMarkeridentifies the first hosted zone in the next group of hosted zones. Submit anotherListHostedZonesrequest, and specify the value ofNextMarkerfrom the response in themarkerparameter. This element is present only ifIsTruncatedistrue.lhzrsResponseStatus- -- | The response status code.lhzrsHostedZones- A complex type that contains general information about the hosted zone.lhzrsIsTruncated- A flag indicating whether there are more hosted zones to be listed. If the response was truncated, you can get more hosted zones by submitting anotherListHostedZonesrequest and specifying the value ofNextMarkerin themarkerparameter.lhzrsMaxItems- The value that you specified for themaxitemsparameter in the call toListHostedZonesthat produced the current response.
data ListHostedZonesResponse Source #
See: listHostedZonesResponse smart constructor.
Instances
Response Lenses
lhzrsMarker :: Lens' ListHostedZonesResponse (Maybe Text) Source #
For the second and subsequent calls to ListHostedZones , Marker is the value that you specified for the marker parameter in the request that produced the current response.
lhzrsNextMarker :: Lens' ListHostedZonesResponse (Maybe Text) Source #
If IsTruncated is true , the value of NextMarker identifies the first hosted zone in the next group of hosted zones. Submit another ListHostedZones request, and specify the value of NextMarker from the response in the marker parameter. This element is present only if IsTruncated is true .
lhzrsResponseStatus :: Lens' ListHostedZonesResponse Int Source #
- - | The response status code.
lhzrsHostedZones :: Lens' ListHostedZonesResponse [HostedZone] Source #
A complex type that contains general information about the hosted zone.
lhzrsIsTruncated :: Lens' ListHostedZonesResponse Bool Source #
A flag indicating whether there are more hosted zones to be listed. If the response was truncated, you can get more hosted zones by submitting another ListHostedZones request and specifying the value of NextMarker in the marker parameter.
lhzrsMaxItems :: Lens' ListHostedZonesResponse Text Source #
The value that you specified for the maxitems parameter in the call to ListHostedZones that produced the current response.