{-# 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.WebACLSummary -- 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.WebACLSummary 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. -- -- Contains the identifier and the name or description of the WebACL. -- -- /See:/ 'newWebACLSummary' smart constructor. data WebACLSummary = WebACLSummary' { -- | A unique identifier for a @WebACL@. You use @WebACLId@ to get -- information about a @WebACL@ (see GetWebACL), update a @WebACL@ (see -- UpdateWebACL), and delete a @WebACL@ from AWS WAF (see DeleteWebACL). -- -- @WebACLId@ is returned by CreateWebACL and by ListWebACLs. webACLId :: Prelude.Text, -- | A friendly name or description of the WebACL. You can\'t change the name -- of a @WebACL@ after you create it. name :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'WebACLSummary' 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: -- -- 'webACLId', 'webACLSummary_webACLId' - A unique identifier for a @WebACL@. You use @WebACLId@ to get -- information about a @WebACL@ (see GetWebACL), update a @WebACL@ (see -- UpdateWebACL), and delete a @WebACL@ from AWS WAF (see DeleteWebACL). -- -- @WebACLId@ is returned by CreateWebACL and by ListWebACLs. -- -- 'name', 'webACLSummary_name' - A friendly name or description of the WebACL. You can\'t change the name -- of a @WebACL@ after you create it. newWebACLSummary :: -- | 'webACLId' Prelude.Text -> -- | 'name' Prelude.Text -> WebACLSummary newWebACLSummary pWebACLId_ pName_ = WebACLSummary' { webACLId = pWebACLId_, name = pName_ } -- | A unique identifier for a @WebACL@. You use @WebACLId@ to get -- information about a @WebACL@ (see GetWebACL), update a @WebACL@ (see -- UpdateWebACL), and delete a @WebACL@ from AWS WAF (see DeleteWebACL). -- -- @WebACLId@ is returned by CreateWebACL and by ListWebACLs. webACLSummary_webACLId :: Lens.Lens' WebACLSummary Prelude.Text webACLSummary_webACLId = Lens.lens (\WebACLSummary' {webACLId} -> webACLId) (\s@WebACLSummary' {} a -> s {webACLId = a} :: WebACLSummary) -- | A friendly name or description of the WebACL. You can\'t change the name -- of a @WebACL@ after you create it. webACLSummary_name :: Lens.Lens' WebACLSummary Prelude.Text webACLSummary_name = Lens.lens (\WebACLSummary' {name} -> name) (\s@WebACLSummary' {} a -> s {name = a} :: WebACLSummary) instance Data.FromJSON WebACLSummary where parseJSON = Data.withObject "WebACLSummary" ( \x -> WebACLSummary' Prelude.<$> (x Data..: "WebACLId") Prelude.<*> (x Data..: "Name") ) instance Prelude.Hashable WebACLSummary where hashWithSalt _salt WebACLSummary' {..} = _salt `Prelude.hashWithSalt` webACLId `Prelude.hashWithSalt` name instance Prelude.NFData WebACLSummary where rnf WebACLSummary' {..} = Prelude.rnf webACLId `Prelude.seq` Prelude.rnf name