amazonka-route53-1.4.4: Amazon Route 53 SDK.

Copyright(c) 2013-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.Route53.ListResourceRecordSets

Contents

Description

Undocumented operation.

This operation returns paginated results.

Synopsis

Creating a Request

listResourceRecordSets Source #

Creates a value of ListResourceRecordSets with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data ListResourceRecordSets Source #

The input for a ListResourceRecordSets request.

See: listResourceRecordSets smart constructor.

Instances

Eq ListResourceRecordSets Source # 
Data ListResourceRecordSets Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListResourceRecordSets -> c ListResourceRecordSets #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListResourceRecordSets #

toConstr :: ListResourceRecordSets -> Constr #

dataTypeOf :: ListResourceRecordSets -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListResourceRecordSets) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListResourceRecordSets) #

gmapT :: (forall b. Data b => b -> b) -> ListResourceRecordSets -> ListResourceRecordSets #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListResourceRecordSets -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListResourceRecordSets -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListResourceRecordSets -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListResourceRecordSets -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListResourceRecordSets -> m ListResourceRecordSets #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListResourceRecordSets -> m ListResourceRecordSets #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListResourceRecordSets -> m ListResourceRecordSets #

Read ListResourceRecordSets Source # 
Show ListResourceRecordSets Source # 
Generic ListResourceRecordSets Source # 
Hashable ListResourceRecordSets Source # 
NFData ListResourceRecordSets Source # 

Methods

rnf :: ListResourceRecordSets -> () #

AWSPager ListResourceRecordSets Source # 
AWSRequest ListResourceRecordSets Source # 
ToPath ListResourceRecordSets Source # 
ToHeaders ListResourceRecordSets Source # 
ToQuery ListResourceRecordSets Source # 
type Rep ListResourceRecordSets Source # 
type Rep ListResourceRecordSets = D1 (MetaData "ListResourceRecordSets" "Network.AWS.Route53.ListResourceRecordSets" "amazonka-route53-1.4.4-KBIXDpJOcpkWbDD9G5tXJ" False) (C1 (MetaCons "ListResourceRecordSets'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsStartRecordName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lrrsStartRecordType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe RecordType)))) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsStartRecordIdentifier") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsMaxItems") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lrrsHostedZoneId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))))
type Rs ListResourceRecordSets Source # 

Request Lenses

lrrsStartRecordName :: Lens' ListResourceRecordSets (Maybe Text) Source #

The first name in the lexicographic ordering of domain names that you want the ListResourceRecordSets request to list.

lrrsStartRecordType :: Lens' ListResourceRecordSets (Maybe RecordType) Source #

The type of resource record set to begin the record listing from.

Valid values for basic resource record sets: A | AAAA | CNAME | MX | NAPTR | NS | PTR | SOA | SPF | SRV | TXT

Values for weighted, latency, geo, and failover resource record sets: A | AAAA | CNAME | MX | NAPTR | PTR | SPF | SRV | TXT

Values for alias resource record sets:

  • CloudFront distribution: A
  • Elastic Beanstalk environment that has a regionalized subdomain: A
  • ELB load balancer: A | AAAA
  • Amazon S3 bucket: A

Constraint: Specifying 'type' without specifying name returns an InvalidInput error.

lrrsStartRecordIdentifier :: Lens' ListResourceRecordSets (Maybe Text) Source #

Weighted resource record sets only: If results were truncated for a given DNS name and type, specify the value of NextRecordIdentifier from the previous response to get the next resource record set that has the current DNS name and type.

lrrsMaxItems :: Lens' ListResourceRecordSets (Maybe Text) Source #

(Optional) The maximum number of resource records sets to include in the response body for this request. If the response includes more than maxitems resource record sets, the value of the IsTruncated element in the response is true, and the values of the NextRecordName and NextRecordType elements in the response identify the first resource record set in the next group of maxitems resource record sets.

lrrsHostedZoneId :: Lens' ListResourceRecordSets Text Source #

The ID of the hosted zone that contains the resource record sets that you want to get.

Destructuring the Response

data ListResourceRecordSetsResponse Source #

A complex type that contains list information for the resource record set.

See: listResourceRecordSetsResponse smart constructor.

Instances

Eq ListResourceRecordSetsResponse Source # 
Data ListResourceRecordSetsResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListResourceRecordSetsResponse -> c ListResourceRecordSetsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListResourceRecordSetsResponse #

toConstr :: ListResourceRecordSetsResponse -> Constr #

dataTypeOf :: ListResourceRecordSetsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListResourceRecordSetsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListResourceRecordSetsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListResourceRecordSetsResponse -> ListResourceRecordSetsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListResourceRecordSetsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListResourceRecordSetsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListResourceRecordSetsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListResourceRecordSetsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListResourceRecordSetsResponse -> m ListResourceRecordSetsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListResourceRecordSetsResponse -> m ListResourceRecordSetsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListResourceRecordSetsResponse -> m ListResourceRecordSetsResponse #

Read ListResourceRecordSetsResponse Source # 
Show ListResourceRecordSetsResponse Source # 
Generic ListResourceRecordSetsResponse Source # 
NFData ListResourceRecordSetsResponse Source # 
type Rep ListResourceRecordSetsResponse Source # 
type Rep ListResourceRecordSetsResponse = D1 (MetaData "ListResourceRecordSetsResponse" "Network.AWS.Route53.ListResourceRecordSets" "amazonka-route53-1.4.4-KBIXDpJOcpkWbDD9G5tXJ" False) (C1 (MetaCons "ListResourceRecordSetsResponse'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsrsNextRecordType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe RecordType))) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsrsNextRecordName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lrrsrsNextRecordIdentifier") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int)) (S1 (MetaSel (Just Symbol "_lrrsrsResourceRecordSets") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [ResourceRecordSet]))) ((:*:) (S1 (MetaSel (Just Symbol "_lrrsrsIsTruncated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Bool)) (S1 (MetaSel (Just Symbol "_lrrsrsMaxItems") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))))

Response Lenses

lrrsrsNextRecordType :: Lens' ListResourceRecordSetsResponse (Maybe RecordType) Source #

If the results were truncated, the type of the next record in the list.

This element is present only if IsTruncated is true.

lrrsrsNextRecordName :: Lens' ListResourceRecordSetsResponse (Maybe Text) Source #

If the results were truncated, the name of the next record in the list.

This element is present only if IsTruncated is true.

lrrsrsNextRecordIdentifier :: Lens' ListResourceRecordSetsResponse (Maybe Text) Source #

Weighted, latency, geolocation, and failover resource record sets only: 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.

lrrsrsResourceRecordSets :: Lens' ListResourceRecordSetsResponse [ResourceRecordSet] Source #

Information about multiple resource record sets.

lrrsrsIsTruncated :: Lens' ListResourceRecordSetsResponse Bool Source #

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.

lrrsrsMaxItems :: Lens' ListResourceRecordSetsResponse Text Source #

The maximum number of records you requested.