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.ListRegexPatternSets

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 RegexPatternSetSummary objects.

Synopsis

Creating a Request

data ListRegexPatternSets Source #

See: newListRegexPatternSets smart constructor.

Constructors

ListRegexPatternSets' 

Fields

  • limit :: Maybe Natural

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

  • nextMarker :: Maybe Text

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

Instances

Instances details
ToJSON ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

ToHeaders ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

ToPath ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

ToQuery ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

AWSRequest ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Associated Types

type AWSResponse ListRegexPatternSets #

Generic ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Associated Types

type Rep ListRegexPatternSets :: Type -> Type #

Read ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Show ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

NFData ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Methods

rnf :: ListRegexPatternSets -> () #

Eq ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Hashable ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

type AWSResponse ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

type Rep ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

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

newListRegexPatternSets :: ListRegexPatternSets Source #

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

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

Request Lenses

listRegexPatternSets_limit :: Lens' ListRegexPatternSets (Maybe Natural) Source #

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

listRegexPatternSets_nextMarker :: Lens' ListRegexPatternSets (Maybe Text) Source #

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

Destructuring the Response

data ListRegexPatternSetsResponse Source #

See: newListRegexPatternSetsResponse smart constructor.

Constructors

ListRegexPatternSetsResponse' 

Fields

  • nextMarker :: Maybe Text

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

  • regexPatternSets :: Maybe [RegexPatternSetSummary]

    An array of RegexPatternSetSummary objects.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Associated Types

type Rep ListRegexPatternSetsResponse :: Type -> Type #

Read ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Show ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

NFData ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Eq ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

type Rep ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

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

newListRegexPatternSetsResponse Source #

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

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

$sel:regexPatternSets:ListRegexPatternSetsResponse', listRegexPatternSetsResponse_regexPatternSets - An array of RegexPatternSetSummary objects.

$sel:httpStatus:ListRegexPatternSetsResponse', listRegexPatternSetsResponse_httpStatus - The response's http status code.

Response Lenses

listRegexPatternSetsResponse_nextMarker :: Lens' ListRegexPatternSetsResponse (Maybe Text) Source #

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