{-# 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.IPSetSummary -- 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.IPSetSummary 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 of the @IPSet@. -- -- /See:/ 'newIPSetSummary' smart constructor. data IPSetSummary = IPSetSummary' { -- | The @IPSetId@ for an IPSet. You can use @IPSetId@ in a GetIPSet request -- to get detailed information about an IPSet. iPSetId :: Prelude.Text, -- | A friendly name or description of the IPSet. You can\'t change the name -- of an @IPSet@ after you create it. name :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'IPSetSummary' 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: -- -- 'iPSetId', 'iPSetSummary_iPSetId' - The @IPSetId@ for an IPSet. You can use @IPSetId@ in a GetIPSet request -- to get detailed information about an IPSet. -- -- 'name', 'iPSetSummary_name' - A friendly name or description of the IPSet. You can\'t change the name -- of an @IPSet@ after you create it. newIPSetSummary :: -- | 'iPSetId' Prelude.Text -> -- | 'name' Prelude.Text -> IPSetSummary newIPSetSummary pIPSetId_ pName_ = IPSetSummary' {iPSetId = pIPSetId_, name = pName_} -- | The @IPSetId@ for an IPSet. You can use @IPSetId@ in a GetIPSet request -- to get detailed information about an IPSet. iPSetSummary_iPSetId :: Lens.Lens' IPSetSummary Prelude.Text iPSetSummary_iPSetId = Lens.lens (\IPSetSummary' {iPSetId} -> iPSetId) (\s@IPSetSummary' {} a -> s {iPSetId = a} :: IPSetSummary) -- | A friendly name or description of the IPSet. You can\'t change the name -- of an @IPSet@ after you create it. iPSetSummary_name :: Lens.Lens' IPSetSummary Prelude.Text iPSetSummary_name = Lens.lens (\IPSetSummary' {name} -> name) (\s@IPSetSummary' {} a -> s {name = a} :: IPSetSummary) instance Data.FromJSON IPSetSummary where parseJSON = Data.withObject "IPSetSummary" ( \x -> IPSetSummary' Prelude.<$> (x Data..: "IPSetId") Prelude.<*> (x Data..: "Name") ) instance Prelude.Hashable IPSetSummary where hashWithSalt _salt IPSetSummary' {..} = _salt `Prelude.hashWithSalt` iPSetId `Prelude.hashWithSalt` name instance Prelude.NFData IPSetSummary where rnf IPSetSummary' {..} = Prelude.rnf iPSetId `Prelude.seq` Prelude.rnf name