{-# 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.WAF.Types.SqlInjectionMatchSet -- 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.WAF.Types.SqlInjectionMatchSet 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.WAF.Types.SqlInjectionMatchTuple -- | 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. -- -- A complex type that contains @SqlInjectionMatchTuple@ objects, which -- specify the parts of web requests that you want AWS WAF to inspect for -- snippets of malicious SQL code and, if you want AWS WAF to inspect a -- header, the name of the header. If a @SqlInjectionMatchSet@ contains -- more than one @SqlInjectionMatchTuple@ object, a request needs to -- include snippets of SQL code in only one of the specified parts of the -- request to be considered a match. -- -- /See:/ 'newSqlInjectionMatchSet' smart constructor. data SqlInjectionMatchSet = SqlInjectionMatchSet' { -- | The name, if any, of the @SqlInjectionMatchSet@. name :: Prelude.Maybe Prelude.Text, -- | A unique identifier for a @SqlInjectionMatchSet@. You use -- @SqlInjectionMatchSetId@ to get information about a -- @SqlInjectionMatchSet@ (see GetSqlInjectionMatchSet), update a -- @SqlInjectionMatchSet@ (see UpdateSqlInjectionMatchSet), insert a -- @SqlInjectionMatchSet@ into a @Rule@ or delete one from a @Rule@ (see -- UpdateRule), and delete a @SqlInjectionMatchSet@ from AWS WAF (see -- DeleteSqlInjectionMatchSet). -- -- @SqlInjectionMatchSetId@ is returned by CreateSqlInjectionMatchSet and -- by ListSqlInjectionMatchSets. sqlInjectionMatchSetId :: Prelude.Text, -- | Specifies the parts of web requests that you want to inspect for -- snippets of malicious SQL code. sqlInjectionMatchTuples :: [SqlInjectionMatchTuple] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'SqlInjectionMatchSet' 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', 'sqlInjectionMatchSet_name' - The name, if any, of the @SqlInjectionMatchSet@. -- -- 'sqlInjectionMatchSetId', 'sqlInjectionMatchSet_sqlInjectionMatchSetId' - A unique identifier for a @SqlInjectionMatchSet@. You use -- @SqlInjectionMatchSetId@ to get information about a -- @SqlInjectionMatchSet@ (see GetSqlInjectionMatchSet), update a -- @SqlInjectionMatchSet@ (see UpdateSqlInjectionMatchSet), insert a -- @SqlInjectionMatchSet@ into a @Rule@ or delete one from a @Rule@ (see -- UpdateRule), and delete a @SqlInjectionMatchSet@ from AWS WAF (see -- DeleteSqlInjectionMatchSet). -- -- @SqlInjectionMatchSetId@ is returned by CreateSqlInjectionMatchSet and -- by ListSqlInjectionMatchSets. -- -- 'sqlInjectionMatchTuples', 'sqlInjectionMatchSet_sqlInjectionMatchTuples' - Specifies the parts of web requests that you want to inspect for -- snippets of malicious SQL code. newSqlInjectionMatchSet :: -- | 'sqlInjectionMatchSetId' Prelude.Text -> SqlInjectionMatchSet newSqlInjectionMatchSet pSqlInjectionMatchSetId_ = SqlInjectionMatchSet' { name = Prelude.Nothing, sqlInjectionMatchSetId = pSqlInjectionMatchSetId_, sqlInjectionMatchTuples = Prelude.mempty } -- | The name, if any, of the @SqlInjectionMatchSet@. sqlInjectionMatchSet_name :: Lens.Lens' SqlInjectionMatchSet (Prelude.Maybe Prelude.Text) sqlInjectionMatchSet_name = Lens.lens (\SqlInjectionMatchSet' {name} -> name) (\s@SqlInjectionMatchSet' {} a -> s {name = a} :: SqlInjectionMatchSet) -- | A unique identifier for a @SqlInjectionMatchSet@. You use -- @SqlInjectionMatchSetId@ to get information about a -- @SqlInjectionMatchSet@ (see GetSqlInjectionMatchSet), update a -- @SqlInjectionMatchSet@ (see UpdateSqlInjectionMatchSet), insert a -- @SqlInjectionMatchSet@ into a @Rule@ or delete one from a @Rule@ (see -- UpdateRule), and delete a @SqlInjectionMatchSet@ from AWS WAF (see -- DeleteSqlInjectionMatchSet). -- -- @SqlInjectionMatchSetId@ is returned by CreateSqlInjectionMatchSet and -- by ListSqlInjectionMatchSets. sqlInjectionMatchSet_sqlInjectionMatchSetId :: Lens.Lens' SqlInjectionMatchSet Prelude.Text sqlInjectionMatchSet_sqlInjectionMatchSetId = Lens.lens (\SqlInjectionMatchSet' {sqlInjectionMatchSetId} -> sqlInjectionMatchSetId) (\s@SqlInjectionMatchSet' {} a -> s {sqlInjectionMatchSetId = a} :: SqlInjectionMatchSet) -- | Specifies the parts of web requests that you want to inspect for -- snippets of malicious SQL code. sqlInjectionMatchSet_sqlInjectionMatchTuples :: Lens.Lens' SqlInjectionMatchSet [SqlInjectionMatchTuple] sqlInjectionMatchSet_sqlInjectionMatchTuples = Lens.lens (\SqlInjectionMatchSet' {sqlInjectionMatchTuples} -> sqlInjectionMatchTuples) (\s@SqlInjectionMatchSet' {} a -> s {sqlInjectionMatchTuples = a} :: SqlInjectionMatchSet) Prelude.. Lens.coerced instance Data.FromJSON SqlInjectionMatchSet where parseJSON = Data.withObject "SqlInjectionMatchSet" ( \x -> SqlInjectionMatchSet' Prelude.<$> (x Data..:? "Name") Prelude.<*> (x Data..: "SqlInjectionMatchSetId") Prelude.<*> ( x Data..:? "SqlInjectionMatchTuples" Data..!= Prelude.mempty ) ) instance Prelude.Hashable SqlInjectionMatchSet where hashWithSalt _salt SqlInjectionMatchSet' {..} = _salt `Prelude.hashWithSalt` name `Prelude.hashWithSalt` sqlInjectionMatchSetId `Prelude.hashWithSalt` sqlInjectionMatchTuples instance Prelude.NFData SqlInjectionMatchSet where rnf SqlInjectionMatchSet' {..} = Prelude.rnf name `Prelude.seq` Prelude.rnf sqlInjectionMatchSetId `Prelude.seq` Prelude.rnf sqlInjectionMatchTuples