{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.WAFRegional.Types.RegexPatternSet -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.WAFRegional.Types.RegexPatternSet where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | This is __AWS WAF Classic__ documentation. For more information, see -- -- in the developer guide. -- -- __For the latest version of AWS WAF__, use the AWS WAFV2 API and see the -- . -- With the latest version, AWS WAF has a single set of endpoints for -- regional and global use. -- -- The @RegexPatternSet@ specifies the regular expression (regex) pattern -- that you want AWS WAF to search for, such as @B[a\@]dB[o0]t@. You can -- then configure AWS WAF to reject those requests. -- -- /See:/ 'newRegexPatternSet' smart constructor. data RegexPatternSet = RegexPatternSet' { -- | A friendly name or description of the RegexPatternSet. You can\'t change -- @Name@ after you create a @RegexPatternSet@. name :: Prelude.Maybe Prelude.Text, -- | The identifier for the @RegexPatternSet@. You use @RegexPatternSetId@ to -- get information about a @RegexPatternSet@, update a @RegexPatternSet@, -- remove a @RegexPatternSet@ from a @RegexMatchSet@, and delete a -- @RegexPatternSet@ from AWS WAF. -- -- @RegexMatchSetId@ is returned by CreateRegexPatternSet and by -- ListRegexPatternSets. regexPatternSetId :: Prelude.Text, -- | Specifies the regular expression (regex) patterns that you want AWS WAF -- to search for, such as @B[a\@]dB[o0]t@. regexPatternStrings :: [Prelude.Text] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RegexPatternSet' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'name', 'regexPatternSet_name' - A friendly name or description of the RegexPatternSet. You can\'t change -- @Name@ after you create a @RegexPatternSet@. -- -- 'regexPatternSetId', 'regexPatternSet_regexPatternSetId' - The identifier for the @RegexPatternSet@. You use @RegexPatternSetId@ to -- get information about a @RegexPatternSet@, update a @RegexPatternSet@, -- remove a @RegexPatternSet@ from a @RegexMatchSet@, and delete a -- @RegexPatternSet@ from AWS WAF. -- -- @RegexMatchSetId@ is returned by CreateRegexPatternSet and by -- ListRegexPatternSets. -- -- 'regexPatternStrings', 'regexPatternSet_regexPatternStrings' - Specifies the regular expression (regex) patterns that you want AWS WAF -- to search for, such as @B[a\@]dB[o0]t@. newRegexPatternSet :: -- | 'regexPatternSetId' Prelude.Text -> RegexPatternSet newRegexPatternSet pRegexPatternSetId_ = RegexPatternSet' { name = Prelude.Nothing, regexPatternSetId = pRegexPatternSetId_, regexPatternStrings = Prelude.mempty } -- | A friendly name or description of the RegexPatternSet. You can\'t change -- @Name@ after you create a @RegexPatternSet@. regexPatternSet_name :: Lens.Lens' RegexPatternSet (Prelude.Maybe Prelude.Text) regexPatternSet_name = Lens.lens (\RegexPatternSet' {name} -> name) (\s@RegexPatternSet' {} a -> s {name = a} :: RegexPatternSet) -- | The identifier for the @RegexPatternSet@. You use @RegexPatternSetId@ to -- get information about a @RegexPatternSet@, update a @RegexPatternSet@, -- remove a @RegexPatternSet@ from a @RegexMatchSet@, and delete a -- @RegexPatternSet@ from AWS WAF. -- -- @RegexMatchSetId@ is returned by CreateRegexPatternSet and by -- ListRegexPatternSets. regexPatternSet_regexPatternSetId :: Lens.Lens' RegexPatternSet Prelude.Text regexPatternSet_regexPatternSetId = Lens.lens (\RegexPatternSet' {regexPatternSetId} -> regexPatternSetId) (\s@RegexPatternSet' {} a -> s {regexPatternSetId = a} :: RegexPatternSet) -- | Specifies the regular expression (regex) patterns that you want AWS WAF -- to search for, such as @B[a\@]dB[o0]t@. regexPatternSet_regexPatternStrings :: Lens.Lens' RegexPatternSet [Prelude.Text] regexPatternSet_regexPatternStrings = Lens.lens (\RegexPatternSet' {regexPatternStrings} -> regexPatternStrings) (\s@RegexPatternSet' {} a -> s {regexPatternStrings = a} :: RegexPatternSet) Prelude.. Lens.coerced instance Data.FromJSON RegexPatternSet where parseJSON = Data.withObject "RegexPatternSet" ( \x -> RegexPatternSet' Prelude.<$> (x Data..:? "Name") Prelude.<*> (x Data..: "RegexPatternSetId") Prelude.<*> ( x Data..:? "RegexPatternStrings" Data..!= Prelude.mempty ) ) instance Prelude.Hashable RegexPatternSet where hashWithSalt _salt RegexPatternSet' {..} = _salt `Prelude.hashWithSalt` name `Prelude.hashWithSalt` regexPatternSetId `Prelude.hashWithSalt` regexPatternStrings instance Prelude.NFData RegexPatternSet where rnf RegexPatternSet' {..} = Prelude.rnf name `Prelude.seq` Prelude.rnf regexPatternSetId `Prelude.seq` Prelude.rnf regexPatternStrings