{-# 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.GeoMatchSet -- 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.GeoMatchSet 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 import Amazonka.WAFRegional.Types.GeoMatchConstraint -- | 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. -- -- Contains one or more countries that AWS WAF will search for. -- -- /See:/ 'newGeoMatchSet' smart constructor. data GeoMatchSet = GeoMatchSet' { -- | A friendly name or description of the GeoMatchSet. You can\'t change the -- name of an @GeoMatchSet@ after you create it. name :: Prelude.Maybe Prelude.Text, -- | The @GeoMatchSetId@ for an @GeoMatchSet@. You use @GeoMatchSetId@ to get -- information about a @GeoMatchSet@ (see GeoMatchSet), update a -- @GeoMatchSet@ (see UpdateGeoMatchSet), insert a @GeoMatchSet@ into a -- @Rule@ or delete one from a @Rule@ (see UpdateRule), and delete a -- @GeoMatchSet@ from AWS WAF (see DeleteGeoMatchSet). -- -- @GeoMatchSetId@ is returned by CreateGeoMatchSet and by -- ListGeoMatchSets. geoMatchSetId :: Prelude.Text, -- | An array of GeoMatchConstraint objects, which contain the country that -- you want AWS WAF to search for. geoMatchConstraints :: [GeoMatchConstraint] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GeoMatchSet' 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', 'geoMatchSet_name' - A friendly name or description of the GeoMatchSet. You can\'t change the -- name of an @GeoMatchSet@ after you create it. -- -- 'geoMatchSetId', 'geoMatchSet_geoMatchSetId' - The @GeoMatchSetId@ for an @GeoMatchSet@. You use @GeoMatchSetId@ to get -- information about a @GeoMatchSet@ (see GeoMatchSet), update a -- @GeoMatchSet@ (see UpdateGeoMatchSet), insert a @GeoMatchSet@ into a -- @Rule@ or delete one from a @Rule@ (see UpdateRule), and delete a -- @GeoMatchSet@ from AWS WAF (see DeleteGeoMatchSet). -- -- @GeoMatchSetId@ is returned by CreateGeoMatchSet and by -- ListGeoMatchSets. -- -- 'geoMatchConstraints', 'geoMatchSet_geoMatchConstraints' - An array of GeoMatchConstraint objects, which contain the country that -- you want AWS WAF to search for. newGeoMatchSet :: -- | 'geoMatchSetId' Prelude.Text -> GeoMatchSet newGeoMatchSet pGeoMatchSetId_ = GeoMatchSet' { name = Prelude.Nothing, geoMatchSetId = pGeoMatchSetId_, geoMatchConstraints = Prelude.mempty } -- | A friendly name or description of the GeoMatchSet. You can\'t change the -- name of an @GeoMatchSet@ after you create it. geoMatchSet_name :: Lens.Lens' GeoMatchSet (Prelude.Maybe Prelude.Text) geoMatchSet_name = Lens.lens (\GeoMatchSet' {name} -> name) (\s@GeoMatchSet' {} a -> s {name = a} :: GeoMatchSet) -- | The @GeoMatchSetId@ for an @GeoMatchSet@. You use @GeoMatchSetId@ to get -- information about a @GeoMatchSet@ (see GeoMatchSet), update a -- @GeoMatchSet@ (see UpdateGeoMatchSet), insert a @GeoMatchSet@ into a -- @Rule@ or delete one from a @Rule@ (see UpdateRule), and delete a -- @GeoMatchSet@ from AWS WAF (see DeleteGeoMatchSet). -- -- @GeoMatchSetId@ is returned by CreateGeoMatchSet and by -- ListGeoMatchSets. geoMatchSet_geoMatchSetId :: Lens.Lens' GeoMatchSet Prelude.Text geoMatchSet_geoMatchSetId = Lens.lens (\GeoMatchSet' {geoMatchSetId} -> geoMatchSetId) (\s@GeoMatchSet' {} a -> s {geoMatchSetId = a} :: GeoMatchSet) -- | An array of GeoMatchConstraint objects, which contain the country that -- you want AWS WAF to search for. geoMatchSet_geoMatchConstraints :: Lens.Lens' GeoMatchSet [GeoMatchConstraint] geoMatchSet_geoMatchConstraints = Lens.lens (\GeoMatchSet' {geoMatchConstraints} -> geoMatchConstraints) (\s@GeoMatchSet' {} a -> s {geoMatchConstraints = a} :: GeoMatchSet) Prelude.. Lens.coerced instance Data.FromJSON GeoMatchSet where parseJSON = Data.withObject "GeoMatchSet" ( \x -> GeoMatchSet' Prelude.<$> (x Data..:? "Name") Prelude.<*> (x Data..: "GeoMatchSetId") Prelude.<*> ( x Data..:? "GeoMatchConstraints" Data..!= Prelude.mempty ) ) instance Prelude.Hashable GeoMatchSet where hashWithSalt _salt GeoMatchSet' {..} = _salt `Prelude.hashWithSalt` name `Prelude.hashWithSalt` geoMatchSetId `Prelude.hashWithSalt` geoMatchConstraints instance Prelude.NFData GeoMatchSet where rnf GeoMatchSet' {..} = Prelude.rnf name `Prelude.seq` Prelude.rnf geoMatchSetId `Prelude.seq` Prelude.rnf geoMatchConstraints