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

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.

Inserts or deletes RegexPatternString objects in a RegexPatternSet. For each RegexPatternString object, you specify the following values:

  • Whether to insert or delete the RegexPatternString.
  • The regular expression pattern that you want to insert or delete. For more information, see RegexPatternSet.

For example, you can create a RegexPatternString such as B[a@]dB[o0]t. AWS WAF will match this RegexPatternString to:

  • BadBot
  • BadB0t
  • B@dBot
  • B@dB0t

To create and configure a RegexPatternSet, perform the following steps:

  1. Create a RegexPatternSet. For more information, see CreateRegexPatternSet.
  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of an UpdateRegexPatternSet request.
  3. Submit an UpdateRegexPatternSet request to specify the regular expression pattern that you want AWS WAF to watch for.

For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.

Synopsis

Creating a Request

data UpdateRegexPatternSet Source #

See: newUpdateRegexPatternSet smart constructor.

Constructors

UpdateRegexPatternSet' 

Fields

  • regexPatternSetId :: Text

    The RegexPatternSetId of the RegexPatternSet that you want to update. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

  • updates :: NonEmpty RegexPatternSetUpdate

    An array of RegexPatternSetUpdate objects that you want to insert into or delete from a RegexPatternSet.

  • changeToken :: Text

    The value returned by the most recent call to GetChangeToken.

Instances

Instances details
Eq UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Read UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Show UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Generic UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Associated Types

type Rep UpdateRegexPatternSet :: Type -> Type #

NFData UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Methods

rnf :: UpdateRegexPatternSet -> () #

Hashable UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

ToJSON UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

AWSRequest UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Associated Types

type AWSResponse UpdateRegexPatternSet #

ToHeaders UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

ToPath UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

ToQuery UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

type Rep UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

type Rep UpdateRegexPatternSet = D1 ('MetaData "UpdateRegexPatternSet" "Amazonka.WAFRegional.UpdateRegexPatternSet" "libZSservicesZSamazonka-waf-regionalZSamazonka-waf-regional" 'False) (C1 ('MetaCons "UpdateRegexPatternSet'" 'PrefixI 'True) (S1 ('MetaSel ('Just "regexPatternSetId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "updates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty RegexPatternSetUpdate)) :*: S1 ('MetaSel ('Just "changeToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse UpdateRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

newUpdateRegexPatternSet Source #

Create a value of UpdateRegexPatternSet 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:regexPatternSetId:UpdateRegexPatternSet', updateRegexPatternSet_regexPatternSetId - The RegexPatternSetId of the RegexPatternSet that you want to update. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

$sel:updates:UpdateRegexPatternSet', updateRegexPatternSet_updates - An array of RegexPatternSetUpdate objects that you want to insert into or delete from a RegexPatternSet.

$sel:changeToken:UpdateRegexPatternSet', updateRegexPatternSet_changeToken - The value returned by the most recent call to GetChangeToken.

Request Lenses

updateRegexPatternSet_regexPatternSetId :: Lens' UpdateRegexPatternSet Text Source #

The RegexPatternSetId of the RegexPatternSet that you want to update. RegexPatternSetId is returned by CreateRegexPatternSet and by ListRegexPatternSets.

updateRegexPatternSet_updates :: Lens' UpdateRegexPatternSet (NonEmpty RegexPatternSetUpdate) Source #

An array of RegexPatternSetUpdate objects that you want to insert into or delete from a RegexPatternSet.

updateRegexPatternSet_changeToken :: Lens' UpdateRegexPatternSet Text Source #

The value returned by the most recent call to GetChangeToken.

Destructuring the Response

data UpdateRegexPatternSetResponse Source #

See: newUpdateRegexPatternSetResponse smart constructor.

Constructors

UpdateRegexPatternSetResponse' 

Fields

  • changeToken :: Maybe Text

    The ChangeToken that you used to submit the UpdateRegexPatternSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq UpdateRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Read UpdateRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Show UpdateRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Generic UpdateRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

Associated Types

type Rep UpdateRegexPatternSetResponse :: Type -> Type #

NFData UpdateRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

type Rep UpdateRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.UpdateRegexPatternSet

type Rep UpdateRegexPatternSetResponse = D1 ('MetaData "UpdateRegexPatternSetResponse" "Amazonka.WAFRegional.UpdateRegexPatternSet" "libZSservicesZSamazonka-waf-regionalZSamazonka-waf-regional" 'False) (C1 ('MetaCons "UpdateRegexPatternSetResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "changeToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateRegexPatternSetResponse Source #

Create a value of UpdateRegexPatternSetResponse 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:changeToken:UpdateRegexPatternSet', updateRegexPatternSetResponse_changeToken - The ChangeToken that you used to submit the UpdateRegexPatternSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.

$sel:httpStatus:UpdateRegexPatternSetResponse', updateRegexPatternSetResponse_httpStatus - The response's http status code.

Response Lenses

updateRegexPatternSetResponse_changeToken :: Lens' UpdateRegexPatternSetResponse (Maybe Text) Source #

The ChangeToken that you used to submit the UpdateRegexPatternSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.