{-# 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.RegexMatchSetSummary -- 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.RegexMatchSetSummary 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. -- -- Returned by ListRegexMatchSets. Each @RegexMatchSetSummary@ object -- includes the @Name@ and @RegexMatchSetId@ for one RegexMatchSet. -- -- /See:/ 'newRegexMatchSetSummary' smart constructor. data RegexMatchSetSummary = RegexMatchSetSummary' { -- | The @RegexMatchSetId@ for a @RegexMatchSet@. You use @RegexMatchSetId@ -- to get information about a @RegexMatchSet@, update a @RegexMatchSet@, -- remove a @RegexMatchSet@ from a @Rule@, and delete a @RegexMatchSet@ -- from AWS WAF. -- -- @RegexMatchSetId@ is returned by CreateRegexMatchSet and by -- ListRegexMatchSets. regexMatchSetId :: Prelude.Text, -- | A friendly name or description of the RegexMatchSet. You can\'t change -- @Name@ after you create a @RegexMatchSet@. name :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RegexMatchSetSummary' 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: -- -- 'regexMatchSetId', 'regexMatchSetSummary_regexMatchSetId' - The @RegexMatchSetId@ for a @RegexMatchSet@. You use @RegexMatchSetId@ -- to get information about a @RegexMatchSet@, update a @RegexMatchSet@, -- remove a @RegexMatchSet@ from a @Rule@, and delete a @RegexMatchSet@ -- from AWS WAF. -- -- @RegexMatchSetId@ is returned by CreateRegexMatchSet and by -- ListRegexMatchSets. -- -- 'name', 'regexMatchSetSummary_name' - A friendly name or description of the RegexMatchSet. You can\'t change -- @Name@ after you create a @RegexMatchSet@. newRegexMatchSetSummary :: -- | 'regexMatchSetId' Prelude.Text -> -- | 'name' Prelude.Text -> RegexMatchSetSummary newRegexMatchSetSummary pRegexMatchSetId_ pName_ = RegexMatchSetSummary' { regexMatchSetId = pRegexMatchSetId_, name = pName_ } -- | The @RegexMatchSetId@ for a @RegexMatchSet@. You use @RegexMatchSetId@ -- to get information about a @RegexMatchSet@, update a @RegexMatchSet@, -- remove a @RegexMatchSet@ from a @Rule@, and delete a @RegexMatchSet@ -- from AWS WAF. -- -- @RegexMatchSetId@ is returned by CreateRegexMatchSet and by -- ListRegexMatchSets. regexMatchSetSummary_regexMatchSetId :: Lens.Lens' RegexMatchSetSummary Prelude.Text regexMatchSetSummary_regexMatchSetId = Lens.lens (\RegexMatchSetSummary' {regexMatchSetId} -> regexMatchSetId) (\s@RegexMatchSetSummary' {} a -> s {regexMatchSetId = a} :: RegexMatchSetSummary) -- | A friendly name or description of the RegexMatchSet. You can\'t change -- @Name@ after you create a @RegexMatchSet@. regexMatchSetSummary_name :: Lens.Lens' RegexMatchSetSummary Prelude.Text regexMatchSetSummary_name = Lens.lens (\RegexMatchSetSummary' {name} -> name) (\s@RegexMatchSetSummary' {} a -> s {name = a} :: RegexMatchSetSummary) instance Data.FromJSON RegexMatchSetSummary where parseJSON = Data.withObject "RegexMatchSetSummary" ( \x -> RegexMatchSetSummary' Prelude.<$> (x Data..: "RegexMatchSetId") Prelude.<*> (x Data..: "Name") ) instance Prelude.Hashable RegexMatchSetSummary where hashWithSalt _salt RegexMatchSetSummary' {..} = _salt `Prelude.hashWithSalt` regexMatchSetId `Prelude.hashWithSalt` name instance Prelude.NFData RegexMatchSetSummary where rnf RegexMatchSetSummary' {..} = Prelude.rnf regexMatchSetId `Prelude.seq` Prelude.rnf name