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