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

Amazonka.Route53.ListReusableDelegationSets

Description

Retrieves a list of the reusable delegation sets that are associated with the current Amazon Web Services account.

Synopsis

Creating a Request

data ListReusableDelegationSets Source #

A request to get a list of the reusable delegation sets that are associated with the current Amazon Web Services account.

See: newListReusableDelegationSets smart constructor.

Constructors

ListReusableDelegationSets' 

Fields

  • marker :: Maybe Text

    If the value of IsTruncated in the previous response was true, you have more reusable delegation sets. To get another group, submit another ListReusableDelegationSets request.

    For the value of marker, specify the value of NextMarker from the previous response, which is the ID of the first reusable delegation set 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 reusable delegation sets to get.

  • maxItems :: Maybe Text

    The number of reusable delegation sets that you want Amazon Route 53 to return in the response to this request. If you specify a value greater than 100, Route 53 returns only the first 100 reusable delegation sets.

Instances

Instances details
Eq ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Read ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Show ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Generic ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Associated Types

type Rep ListReusableDelegationSets :: Type -> Type #

NFData ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Hashable ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

AWSRequest ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

ToHeaders ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

ToPath ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

ToQuery ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

type Rep ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

type Rep ListReusableDelegationSets = D1 ('MetaData "ListReusableDelegationSets" "Amazonka.Route53.ListReusableDelegationSets" "libZSservicesZSamazonka-route53ZSamazonka-route53" 'False) (C1 ('MetaCons "ListReusableDelegationSets'" 'PrefixI 'True) (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))
type AWSResponse ListReusableDelegationSets Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

newListReusableDelegationSets :: ListReusableDelegationSets Source #

Create a value of ListReusableDelegationSets with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:marker:ListReusableDelegationSets', listReusableDelegationSets_marker - If the value of IsTruncated in the previous response was true, you have more reusable delegation sets. To get another group, submit another ListReusableDelegationSets request.

For the value of marker, specify the value of NextMarker from the previous response, which is the ID of the first reusable delegation set 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 reusable delegation sets to get.

$sel:maxItems:ListReusableDelegationSets', listReusableDelegationSets_maxItems - The number of reusable delegation sets that you want Amazon Route 53 to return in the response to this request. If you specify a value greater than 100, Route 53 returns only the first 100 reusable delegation sets.

Request Lenses

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

If the value of IsTruncated in the previous response was true, you have more reusable delegation sets. To get another group, submit another ListReusableDelegationSets request.

For the value of marker, specify the value of NextMarker from the previous response, which is the ID of the first reusable delegation set 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 reusable delegation sets to get.

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

The number of reusable delegation sets that you want Amazon Route 53 to return in the response to this request. If you specify a value greater than 100, Route 53 returns only the first 100 reusable delegation sets.

Destructuring the Response

data ListReusableDelegationSetsResponse Source #

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

See: newListReusableDelegationSetsResponse smart constructor.

Constructors

ListReusableDelegationSetsResponse' 

Fields

  • nextMarker :: Maybe Text

    If IsTruncated is true, the value of NextMarker identifies the next reusable delegation set that Amazon Route 53 will return if you submit another ListReusableDelegationSets request and specify the value of NextMarker in the marker parameter.

  • httpStatus :: Int

    The response's http status code.

  • delegationSets :: [DelegationSet]

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

  • marker :: Text

    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.

  • isTruncated :: Bool

    A flag that indicates whether there are more reusable delegation sets to be listed.

  • maxItems :: Text

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

Instances

Instances details
Eq ListReusableDelegationSetsResponse Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Read ListReusableDelegationSetsResponse Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Show ListReusableDelegationSetsResponse Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Generic ListReusableDelegationSetsResponse Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

Associated Types

type Rep ListReusableDelegationSetsResponse :: Type -> Type #

NFData ListReusableDelegationSetsResponse Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

type Rep ListReusableDelegationSetsResponse Source # 
Instance details

Defined in Amazonka.Route53.ListReusableDelegationSets

type Rep ListReusableDelegationSetsResponse = D1 ('MetaData "ListReusableDelegationSetsResponse" "Amazonka.Route53.ListReusableDelegationSets" "libZSservicesZSamazonka-route53ZSamazonka-route53" 'False) (C1 ('MetaCons "ListReusableDelegationSetsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "delegationSets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [DelegationSet]))) :*: (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "isTruncated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool) :*: S1 ('MetaSel ('Just "maxItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newListReusableDelegationSetsResponse Source #

Create a value of ListReusableDelegationSetsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextMarker:ListReusableDelegationSetsResponse', listReusableDelegationSetsResponse_nextMarker - If IsTruncated is true, the value of NextMarker identifies the next reusable delegation set that Amazon Route 53 will return if you submit another ListReusableDelegationSets request and specify the value of NextMarker in the marker parameter.

$sel:httpStatus:ListReusableDelegationSetsResponse', listReusableDelegationSetsResponse_httpStatus - The response's http status code.

$sel:delegationSets:ListReusableDelegationSetsResponse', listReusableDelegationSetsResponse_delegationSets - A complex type that contains one DelegationSet element for each reusable delegation set that was created by the current Amazon Web Services account.

$sel:marker:ListReusableDelegationSets', listReusableDelegationSetsResponse_marker - 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.

$sel:isTruncated:ListReusableDelegationSetsResponse', listReusableDelegationSetsResponse_isTruncated - A flag that indicates whether there are more reusable delegation sets to be listed.

$sel:maxItems:ListReusableDelegationSets', listReusableDelegationSetsResponse_maxItems - The value that you specified for the maxitems parameter in the call to ListReusableDelegationSets that produced the current response.

Response Lenses

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

If IsTruncated is true, the value of NextMarker identifies the next reusable delegation set that Amazon Route 53 will return if you submit another ListReusableDelegationSets request and specify the value of NextMarker in the marker parameter.

listReusableDelegationSetsResponse_delegationSets :: Lens' ListReusableDelegationSetsResponse [DelegationSet] Source #

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

listReusableDelegationSetsResponse_marker :: 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.

listReusableDelegationSetsResponse_isTruncated :: Lens' ListReusableDelegationSetsResponse Bool Source #

A flag that indicates whether there are more reusable delegation sets to be listed.

listReusableDelegationSetsResponse_maxItems :: Lens' ListReusableDelegationSetsResponse Text Source #

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