libZSservicesZSamazonka-waf-regionalZSamazonka-waf-regional
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.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

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

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

Instances

Instances details
Eq ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Read ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Show ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Generic ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Associated Types

type Rep ListRegexPatternSets :: Type -> Type #

NFData ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Methods

rnf :: ListRegexPatternSets -> () #

Hashable ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

ToJSON ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

AWSRequest ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Associated Types

type AWSResponse 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

type Rep ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

type Rep ListRegexPatternSets = D1 ('MetaData "ListRegexPatternSets" "Amazonka.WAFRegional.ListRegexPatternSets" "libZSservicesZSamazonka-waf-regionalZSamazonka-waf-regional" 'False) (C1 ('MetaCons "ListRegexPatternSets'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "limit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))
type AWSResponse ListRegexPatternSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

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

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

Request Lenses

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.

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.

Destructuring the Response

data ListRegexPatternSetsResponse Source #

See: newListRegexPatternSetsResponse smart constructor.

Constructors

ListRegexPatternSetsResponse' 

Fields

  • regexPatternSets :: Maybe [RegexPatternSetSummary]

    An array of RegexPatternSetSummary objects.

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

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Read ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Show ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Generic ListRegexPatternSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListRegexPatternSets

Associated Types

type Rep ListRegexPatternSetsResponse :: Type -> Type #

NFData 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" "libZSservicesZSamazonka-waf-regionalZSamazonka-waf-regional" 'False) (C1 ('MetaCons "ListRegexPatternSetsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "regexPatternSets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [RegexPatternSetSummary])) :*: (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: 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:

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

$sel:nextMarker: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: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.