amazonka-route53-1.4.5: 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.ListReusableDelegationSets

Contents

Description

To retrieve a list of your reusable delegation sets, send a GET request to the 2013-04-01delegationset resource. The response to this request includes a DelegationSets element with zero, one, or multiple DelegationSet child elements. By default, the list of delegation sets 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 delegation set that the list begins with.

Synopsis

Creating a Request

listReusableDelegationSets :: ListReusableDelegationSets Source #

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

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

  • lrdsMarker - If you're making the second or subsequent call to ListReusableDelegationSets , the Marker element matches the value that you specified in the marker parameter in the previous request.
  • lrdsMaxItems - The value that you specified for the maxitems parameter in the request that produced the current response.

data ListReusableDelegationSets Source #

To retrieve a list of your reusable delegation sets, send a GET request to the 2013-04-01delegationset resource. The response to this request includes a DelegationSets element with zero or more DelegationSet child elements. By default, the list of reusable delegation sets 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 delegation set that the list begins with.

See: listReusableDelegationSets smart constructor.

Instances

Eq ListReusableDelegationSets Source # 
Data ListReusableDelegationSets Source # 

Methods

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

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

toConstr :: ListReusableDelegationSets -> Constr #

dataTypeOf :: ListReusableDelegationSets -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListReusableDelegationSets Source # 
Show ListReusableDelegationSets Source # 
Generic ListReusableDelegationSets Source # 
Hashable ListReusableDelegationSets Source # 
NFData ListReusableDelegationSets Source # 
AWSRequest ListReusableDelegationSets Source # 
ToPath ListReusableDelegationSets Source # 
ToHeaders ListReusableDelegationSets Source # 
ToQuery ListReusableDelegationSets Source # 
type Rep ListReusableDelegationSets Source # 
type Rep ListReusableDelegationSets = D1 (MetaData "ListReusableDelegationSets" "Network.AWS.Route53.ListReusableDelegationSets" "amazonka-route53-1.4.5-DoQ7bXPvDC1HwWocjSAILy" False) (C1 (MetaCons "ListReusableDelegationSets'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_lrdsMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lrdsMaxItems") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))
type Rs ListReusableDelegationSets Source # 

Request Lenses

lrdsMarker :: Lens' ListReusableDelegationSets (Maybe Text) Source #

If you're making the second or subsequent call to ListReusableDelegationSets , the Marker element matches the value that you specified in the marker parameter in the previous request.

lrdsMaxItems :: Lens' ListReusableDelegationSets (Maybe Text) Source #

The value that you specified for the maxitems parameter in the request that produced the current response.

Destructuring the Response

listReusableDelegationSetsResponse Source #

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

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

  • lrdsrsNextMarker - If IsTruncated is true , the value of NextMarker identifies the first reusable delegation set in the next group of maxitems reusable delegation sets. Call ListReusableDelegationSets again and specify the value of NextMarker in the marker parameter.
  • lrdsrsResponseStatus - -- | The response status code.
  • lrdsrsDelegationSets - A complex type that contains one DelegationSet element for each reusable delegation set that was created by the current AWS account.
  • lrdsrsMarker - For the second and subsequent calls to ListReusableDelegationSets , Marker is the value that you specified for the marker parameter in the request that produced the current response.
  • lrdsrsIsTruncated - A flag that indicates whether there are more reusable delegation sets to be listed. If the response is truncated, you can get the next group of maxitems reusable delegation sets by calling ListReusableDelegationSets again and specifying the value of the NextMarker element in the marker parameter.
  • lrdsrsMaxItems - The value that you specified for the maxitems parameter in the call to ListReusableDelegationSets that produced the current response.

data ListReusableDelegationSetsResponse Source #

A complex type that contains information about the reusable delegation sets that are associated with the current AWS account.

See: listReusableDelegationSetsResponse smart constructor.

Instances

Eq ListReusableDelegationSetsResponse Source # 
Data ListReusableDelegationSetsResponse Source # 

Methods

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

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

toConstr :: ListReusableDelegationSetsResponse -> Constr #

dataTypeOf :: ListReusableDelegationSetsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListReusableDelegationSetsResponse Source # 
Show ListReusableDelegationSetsResponse Source # 
Generic ListReusableDelegationSetsResponse Source # 
NFData ListReusableDelegationSetsResponse Source # 
type Rep ListReusableDelegationSetsResponse Source # 
type Rep ListReusableDelegationSetsResponse = D1 (MetaData "ListReusableDelegationSetsResponse" "Network.AWS.Route53.ListReusableDelegationSets" "amazonka-route53-1.4.5-DoQ7bXPvDC1HwWocjSAILy" False) (C1 (MetaCons "ListReusableDelegationSetsResponse'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_lrdsrsNextMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_lrdsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int)) (S1 (MetaSel (Just Symbol "_lrdsrsDelegationSets") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [DelegationSet])))) ((:*:) (S1 (MetaSel (Just Symbol "_lrdsrsMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_lrdsrsIsTruncated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Bool)) (S1 (MetaSel (Just Symbol "_lrdsrsMaxItems") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))))

Response Lenses

lrdsrsNextMarker :: Lens' ListReusableDelegationSetsResponse (Maybe Text) Source #

If IsTruncated is true , the value of NextMarker identifies the first reusable delegation set in the next group of maxitems reusable delegation sets. Call ListReusableDelegationSets again and specify the value of NextMarker in the marker parameter.

lrdsrsDelegationSets :: Lens' ListReusableDelegationSetsResponse [DelegationSet] Source #

A complex type that contains one DelegationSet element for each reusable delegation set that was created by the current AWS account.

lrdsrsMarker :: Lens' ListReusableDelegationSetsResponse Text Source #

For the second and subsequent calls to ListReusableDelegationSets , Marker is the value that you specified for the marker parameter in the request that produced the current response.

lrdsrsIsTruncated :: Lens' ListReusableDelegationSetsResponse Bool Source #

A flag that indicates whether there are more reusable delegation sets to be listed. If the response is truncated, you can get the next group of maxitems reusable delegation sets by calling ListReusableDelegationSets again and specifying the value of the NextMarker element in the marker parameter.

lrdsrsMaxItems :: Lens' ListReusableDelegationSetsResponse Text Source #

The value that you specified for the maxitems parameter in the call to ListReusableDelegationSets that produced the current response.