{-# 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.OriginRequestPolicyHeadersConfig -- 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.OriginRequestPolicyHeadersConfig where import Amazonka.CloudFront.Types.Headers import Amazonka.CloudFront.Types.OriginRequestPolicyHeaderBehavior 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 requests that CloudFront sends to the origin. -- -- /See:/ 'newOriginRequestPolicyHeadersConfig' smart constructor. data OriginRequestPolicyHeadersConfig = OriginRequestPolicyHeadersConfig' { headers :: Prelude.Maybe Headers, -- | Determines whether any HTTP headers are included in requests that -- CloudFront sends to the origin. Valid values are: -- -- - @none@ – HTTP headers are not included in requests that CloudFront -- sends to the origin. Even when this field is set to @none@, any -- headers that are listed in a @CachePolicy@ /are/ included in origin -- requests. -- -- - @whitelist@ – The HTTP headers that are listed in the @Headers@ type -- are included in requests that CloudFront sends to the origin. -- -- - @allViewer@ – All HTTP headers in viewer requests are included in -- requests that CloudFront sends to the origin. -- -- - @allViewerAndWhitelistCloudFront@ – All HTTP headers in viewer -- requests and the additional CloudFront headers that are listed in -- the @Headers@ type are included in requests that CloudFront sends to -- the origin. The additional headers are added by CloudFront. headerBehavior :: OriginRequestPolicyHeaderBehavior } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'OriginRequestPolicyHeadersConfig' 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: -- -- 'headers', 'originRequestPolicyHeadersConfig_headers' - Undocumented member. -- -- 'headerBehavior', 'originRequestPolicyHeadersConfig_headerBehavior' - Determines whether any HTTP headers are included in requests that -- CloudFront sends to the origin. Valid values are: -- -- - @none@ – HTTP headers are not included in requests that CloudFront -- sends to the origin. Even when this field is set to @none@, any -- headers that are listed in a @CachePolicy@ /are/ included in origin -- requests. -- -- - @whitelist@ – The HTTP headers that are listed in the @Headers@ type -- are included in requests that CloudFront sends to the origin. -- -- - @allViewer@ – All HTTP headers in viewer requests are included in -- requests that CloudFront sends to the origin. -- -- - @allViewerAndWhitelistCloudFront@ – All HTTP headers in viewer -- requests and the additional CloudFront headers that are listed in -- the @Headers@ type are included in requests that CloudFront sends to -- the origin. The additional headers are added by CloudFront. newOriginRequestPolicyHeadersConfig :: -- | 'headerBehavior' OriginRequestPolicyHeaderBehavior -> OriginRequestPolicyHeadersConfig newOriginRequestPolicyHeadersConfig pHeaderBehavior_ = OriginRequestPolicyHeadersConfig' { headers = Prelude.Nothing, headerBehavior = pHeaderBehavior_ } -- | Undocumented member. originRequestPolicyHeadersConfig_headers :: Lens.Lens' OriginRequestPolicyHeadersConfig (Prelude.Maybe Headers) originRequestPolicyHeadersConfig_headers = Lens.lens (\OriginRequestPolicyHeadersConfig' {headers} -> headers) (\s@OriginRequestPolicyHeadersConfig' {} a -> s {headers = a} :: OriginRequestPolicyHeadersConfig) -- | Determines whether any HTTP headers are included in requests that -- CloudFront sends to the origin. Valid values are: -- -- - @none@ – HTTP headers are not included in requests that CloudFront -- sends to the origin. Even when this field is set to @none@, any -- headers that are listed in a @CachePolicy@ /are/ included in origin -- requests. -- -- - @whitelist@ – The HTTP headers that are listed in the @Headers@ type -- are included in requests that CloudFront sends to the origin. -- -- - @allViewer@ – All HTTP headers in viewer requests are included in -- requests that CloudFront sends to the origin. -- -- - @allViewerAndWhitelistCloudFront@ – All HTTP headers in viewer -- requests and the additional CloudFront headers that are listed in -- the @Headers@ type are included in requests that CloudFront sends to -- the origin. The additional headers are added by CloudFront. originRequestPolicyHeadersConfig_headerBehavior :: Lens.Lens' OriginRequestPolicyHeadersConfig OriginRequestPolicyHeaderBehavior originRequestPolicyHeadersConfig_headerBehavior = Lens.lens (\OriginRequestPolicyHeadersConfig' {headerBehavior} -> headerBehavior) (\s@OriginRequestPolicyHeadersConfig' {} a -> s {headerBehavior = a} :: OriginRequestPolicyHeadersConfig) instance Data.FromXML OriginRequestPolicyHeadersConfig where parseXML x = OriginRequestPolicyHeadersConfig' Prelude.<$> (x Data..@? "Headers") Prelude.<*> (x Data..@ "HeaderBehavior") instance Prelude.Hashable OriginRequestPolicyHeadersConfig where hashWithSalt _salt OriginRequestPolicyHeadersConfig' {..} = _salt `Prelude.hashWithSalt` headers `Prelude.hashWithSalt` headerBehavior instance Prelude.NFData OriginRequestPolicyHeadersConfig where rnf OriginRequestPolicyHeadersConfig' {..} = Prelude.rnf headers `Prelude.seq` Prelude.rnf headerBehavior instance Data.ToXML OriginRequestPolicyHeadersConfig where toXML OriginRequestPolicyHeadersConfig' {..} = Prelude.mconcat [ "Headers" Data.@= headers, "HeaderBehavior" Data.@= headerBehavior ]