amazonka-cloudfront-2.0: gen/Amazonka/CloudFront/Types/CachePolicyHeadersConfig.hs
{-# 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.CloudFront.Types.CachePolicyHeadersConfig
-- 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.CloudFront.Types.CachePolicyHeadersConfig where
import Amazonka.CloudFront.Types.CachePolicyHeaderBehavior
import Amazonka.CloudFront.Types.Headers
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
-- | An object that determines whether any HTTP headers (and if so, which
-- headers) are included in the cache key and automatically included in
-- requests that CloudFront sends to the origin.
--
-- /See:/ 'newCachePolicyHeadersConfig' smart constructor.
data CachePolicyHeadersConfig = CachePolicyHeadersConfig'
{ headers :: Prelude.Maybe Headers,
-- | Determines whether any HTTP headers are included in the cache key and
-- automatically included in requests that CloudFront sends to the origin.
-- Valid values are:
--
-- - @none@ – HTTP headers are not included in the cache key and are not
-- automatically included in requests that CloudFront sends to the
-- origin. Even when this field is set to @none@, any headers that are
-- listed in an @OriginRequestPolicy@ /are/ included in origin
-- requests.
--
-- - @whitelist@ – The HTTP headers that are listed in the @Headers@ type
-- are included in the cache key and are automatically included in
-- requests that CloudFront sends to the origin.
headerBehavior :: CachePolicyHeaderBehavior
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CachePolicyHeadersConfig' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'headers', 'cachePolicyHeadersConfig_headers' - Undocumented member.
--
-- 'headerBehavior', 'cachePolicyHeadersConfig_headerBehavior' - Determines whether any HTTP headers are included in the cache key and
-- automatically included in requests that CloudFront sends to the origin.
-- Valid values are:
--
-- - @none@ – HTTP headers are not included in the cache key and are not
-- automatically included in requests that CloudFront sends to the
-- origin. Even when this field is set to @none@, any headers that are
-- listed in an @OriginRequestPolicy@ /are/ included in origin
-- requests.
--
-- - @whitelist@ – The HTTP headers that are listed in the @Headers@ type
-- are included in the cache key and are automatically included in
-- requests that CloudFront sends to the origin.
newCachePolicyHeadersConfig ::
-- | 'headerBehavior'
CachePolicyHeaderBehavior ->
CachePolicyHeadersConfig
newCachePolicyHeadersConfig pHeaderBehavior_ =
CachePolicyHeadersConfig'
{ headers =
Prelude.Nothing,
headerBehavior = pHeaderBehavior_
}
-- | Undocumented member.
cachePolicyHeadersConfig_headers :: Lens.Lens' CachePolicyHeadersConfig (Prelude.Maybe Headers)
cachePolicyHeadersConfig_headers = Lens.lens (\CachePolicyHeadersConfig' {headers} -> headers) (\s@CachePolicyHeadersConfig' {} a -> s {headers = a} :: CachePolicyHeadersConfig)
-- | Determines whether any HTTP headers are included in the cache key and
-- automatically included in requests that CloudFront sends to the origin.
-- Valid values are:
--
-- - @none@ – HTTP headers are not included in the cache key and are not
-- automatically included in requests that CloudFront sends to the
-- origin. Even when this field is set to @none@, any headers that are
-- listed in an @OriginRequestPolicy@ /are/ included in origin
-- requests.
--
-- - @whitelist@ – The HTTP headers that are listed in the @Headers@ type
-- are included in the cache key and are automatically included in
-- requests that CloudFront sends to the origin.
cachePolicyHeadersConfig_headerBehavior :: Lens.Lens' CachePolicyHeadersConfig CachePolicyHeaderBehavior
cachePolicyHeadersConfig_headerBehavior = Lens.lens (\CachePolicyHeadersConfig' {headerBehavior} -> headerBehavior) (\s@CachePolicyHeadersConfig' {} a -> s {headerBehavior = a} :: CachePolicyHeadersConfig)
instance Data.FromXML CachePolicyHeadersConfig where
parseXML x =
CachePolicyHeadersConfig'
Prelude.<$> (x Data..@? "Headers")
Prelude.<*> (x Data..@ "HeaderBehavior")
instance Prelude.Hashable CachePolicyHeadersConfig where
hashWithSalt _salt CachePolicyHeadersConfig' {..} =
_salt
`Prelude.hashWithSalt` headers
`Prelude.hashWithSalt` headerBehavior
instance Prelude.NFData CachePolicyHeadersConfig where
rnf CachePolicyHeadersConfig' {..} =
Prelude.rnf headers
`Prelude.seq` Prelude.rnf headerBehavior
instance Data.ToXML CachePolicyHeadersConfig where
toXML CachePolicyHeadersConfig' {..} =
Prelude.mconcat
[ "Headers" Data.@= headers,
"HeaderBehavior" Data.@= headerBehavior
]