{-# 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.HTTPHeader -- 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.HTTPHeader 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. -- -- The response from a GetSampledRequests request includes an @HTTPHeader@ -- complex type that appears as @Headers@ in the response syntax. -- @HTTPHeader@ contains the names and values of all of the headers that -- appear in one of the web requests that were returned by -- @GetSampledRequests@. -- -- /See:/ 'newHTTPHeader' smart constructor. data HTTPHeader = HTTPHeader' { -- | The name of one of the headers in the sampled web request. name :: Prelude.Maybe Prelude.Text, -- | The value of one of the headers in the sampled web request. value :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HTTPHeader' 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', 'hTTPHeader_name' - The name of one of the headers in the sampled web request. -- -- 'value', 'hTTPHeader_value' - The value of one of the headers in the sampled web request. newHTTPHeader :: HTTPHeader newHTTPHeader = HTTPHeader' { name = Prelude.Nothing, value = Prelude.Nothing } -- | The name of one of the headers in the sampled web request. hTTPHeader_name :: Lens.Lens' HTTPHeader (Prelude.Maybe Prelude.Text) hTTPHeader_name = Lens.lens (\HTTPHeader' {name} -> name) (\s@HTTPHeader' {} a -> s {name = a} :: HTTPHeader) -- | The value of one of the headers in the sampled web request. hTTPHeader_value :: Lens.Lens' HTTPHeader (Prelude.Maybe Prelude.Text) hTTPHeader_value = Lens.lens (\HTTPHeader' {value} -> value) (\s@HTTPHeader' {} a -> s {value = a} :: HTTPHeader) instance Data.FromJSON HTTPHeader where parseJSON = Data.withObject "HTTPHeader" ( \x -> HTTPHeader' Prelude.<$> (x Data..:? "Name") Prelude.<*> (x Data..:? "Value") ) instance Prelude.Hashable HTTPHeader where hashWithSalt _salt HTTPHeader' {..} = _salt `Prelude.hashWithSalt` name `Prelude.hashWithSalt` value instance Prelude.NFData HTTPHeader where rnf HTTPHeader' {..} = Prelude.rnf name `Prelude.seq` Prelude.rnf value