amazonka-waf-regional-2.0: Amazon WAF Regional SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.WAFRegional.ListSizeConstraintSets

Description

This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.

For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.

Returns an array of SizeConstraintSetSummary objects.

Synopsis

Creating a Request

data ListSizeConstraintSets Source #

See: newListSizeConstraintSets smart constructor.

Constructors

ListSizeConstraintSets' 

Fields

  • limit :: Maybe Natural

    Specifies the number of SizeConstraintSet objects that you want AWS WAF to return for this request. If you have more SizeConstraintSets objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of SizeConstraintSet objects.

  • nextMarker :: Maybe Text

    If you specify a value for Limit and you have more SizeConstraintSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SizeConstraintSets. For the second and subsequent ListSizeConstraintSets requests, specify the value of NextMarker from the previous response to get information about another batch of SizeConstraintSets.

Instances

Instances details
ToJSON ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

ToHeaders ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

ToPath ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

ToQuery ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

AWSRequest ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Associated Types

type AWSResponse ListSizeConstraintSets #

Generic ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Associated Types

type Rep ListSizeConstraintSets :: Type -> Type #

Read ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Show ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

NFData ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Methods

rnf :: ListSizeConstraintSets -> () #

Eq ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Hashable ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

type AWSResponse ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

type Rep ListSizeConstraintSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

type Rep ListSizeConstraintSets = D1 ('MetaData "ListSizeConstraintSets" "Amazonka.WAFRegional.ListSizeConstraintSets" "amazonka-waf-regional-2.0-83dY3vKOuQzAAW7M6EmzRI" 'False) (C1 ('MetaCons "ListSizeConstraintSets'" 'PrefixI 'True) (S1 ('MetaSel ('Just "limit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListSizeConstraintSets :: ListSizeConstraintSets Source #

Create a value of ListSizeConstraintSets 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:limit:ListSizeConstraintSets', listSizeConstraintSets_limit - Specifies the number of SizeConstraintSet objects that you want AWS WAF to return for this request. If you have more SizeConstraintSets objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of SizeConstraintSet objects.

ListSizeConstraintSets, listSizeConstraintSets_nextMarker - If you specify a value for Limit and you have more SizeConstraintSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SizeConstraintSets. For the second and subsequent ListSizeConstraintSets requests, specify the value of NextMarker from the previous response to get information about another batch of SizeConstraintSets.

Request Lenses

listSizeConstraintSets_limit :: Lens' ListSizeConstraintSets (Maybe Natural) Source #

Specifies the number of SizeConstraintSet objects that you want AWS WAF to return for this request. If you have more SizeConstraintSets objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of SizeConstraintSet objects.

listSizeConstraintSets_nextMarker :: Lens' ListSizeConstraintSets (Maybe Text) Source #

If you specify a value for Limit and you have more SizeConstraintSets than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SizeConstraintSets. For the second and subsequent ListSizeConstraintSets requests, specify the value of NextMarker from the previous response to get information about another batch of SizeConstraintSets.

Destructuring the Response

data ListSizeConstraintSetsResponse Source #

See: newListSizeConstraintSetsResponse smart constructor.

Constructors

ListSizeConstraintSetsResponse' 

Fields

  • nextMarker :: Maybe Text

    If you have more SizeConstraintSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SizeConstraintSet objects, submit another ListSizeConstraintSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

  • sizeConstraintSets :: Maybe [SizeConstraintSetSummary]

    An array of SizeConstraintSetSummary objects.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListSizeConstraintSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Associated Types

type Rep ListSizeConstraintSetsResponse :: Type -> Type #

Read ListSizeConstraintSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Show ListSizeConstraintSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

NFData ListSizeConstraintSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

Eq ListSizeConstraintSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

type Rep ListSizeConstraintSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSizeConstraintSets

type Rep ListSizeConstraintSetsResponse = D1 ('MetaData "ListSizeConstraintSetsResponse" "Amazonka.WAFRegional.ListSizeConstraintSets" "amazonka-waf-regional-2.0-83dY3vKOuQzAAW7M6EmzRI" 'False) (C1 ('MetaCons "ListSizeConstraintSetsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "sizeConstraintSets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [SizeConstraintSetSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListSizeConstraintSetsResponse Source #

Create a value of ListSizeConstraintSetsResponse 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:

ListSizeConstraintSets, listSizeConstraintSetsResponse_nextMarker - If you have more SizeConstraintSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SizeConstraintSet objects, submit another ListSizeConstraintSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

$sel:sizeConstraintSets:ListSizeConstraintSetsResponse', listSizeConstraintSetsResponse_sizeConstraintSets - An array of SizeConstraintSetSummary objects.

$sel:httpStatus:ListSizeConstraintSetsResponse', listSizeConstraintSetsResponse_httpStatus - The response's http status code.

Response Lenses

listSizeConstraintSetsResponse_nextMarker :: Lens' ListSizeConstraintSetsResponse (Maybe Text) Source #

If you have more SizeConstraintSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SizeConstraintSet objects, submit another ListSizeConstraintSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.