amazonka-cloudfront-2.0: gen/Amazonka/CloudFront/Types/LambdaFunctionAssociation.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.LambdaFunctionAssociation
-- 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.LambdaFunctionAssociation where
import Amazonka.CloudFront.Types.EventType
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
-- | A complex type that contains a Lambda\@Edge function association.
--
-- /See:/ 'newLambdaFunctionAssociation' smart constructor.
data LambdaFunctionAssociation = LambdaFunctionAssociation'
{ -- | A flag that allows a Lambda\@Edge function to have read access to the
-- body content. For more information, see
-- <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-include-body-access.html Accessing the Request Body by Choosing the Include Body Option>
-- in the Amazon CloudFront Developer Guide.
includeBody :: Prelude.Maybe Prelude.Bool,
-- | The ARN of the Lambda\@Edge function. You must specify the ARN of a
-- function version; you can\'t specify an alias or $LATEST.
lambdaFunctionARN :: Prelude.Text,
-- | Specifies the event type that triggers a Lambda\@Edge function
-- invocation. You can specify the following values:
--
-- - @viewer-request@: The function executes when CloudFront receives a
-- request from a viewer and before it checks to see whether the
-- requested object is in the edge cache.
--
-- - @origin-request@: The function executes only when CloudFront sends a
-- request to your origin. When the requested object is in the edge
-- cache, the function doesn\'t execute.
--
-- - @origin-response@: The function executes after CloudFront receives a
-- response from the origin and before it caches the object in the
-- response. When the requested object is in the edge cache, the
-- function doesn\'t execute.
--
-- - @viewer-response@: The function executes before CloudFront returns
-- the requested object to the viewer. The function executes regardless
-- of whether the object was already in the edge cache.
--
-- If the origin returns an HTTP status code other than HTTP 200 (OK),
-- the function doesn\'t execute.
eventType :: EventType
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'LambdaFunctionAssociation' 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:
--
-- 'includeBody', 'lambdaFunctionAssociation_includeBody' - A flag that allows a Lambda\@Edge function to have read access to the
-- body content. For more information, see
-- <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-include-body-access.html Accessing the Request Body by Choosing the Include Body Option>
-- in the Amazon CloudFront Developer Guide.
--
-- 'lambdaFunctionARN', 'lambdaFunctionAssociation_lambdaFunctionARN' - The ARN of the Lambda\@Edge function. You must specify the ARN of a
-- function version; you can\'t specify an alias or $LATEST.
--
-- 'eventType', 'lambdaFunctionAssociation_eventType' - Specifies the event type that triggers a Lambda\@Edge function
-- invocation. You can specify the following values:
--
-- - @viewer-request@: The function executes when CloudFront receives a
-- request from a viewer and before it checks to see whether the
-- requested object is in the edge cache.
--
-- - @origin-request@: The function executes only when CloudFront sends a
-- request to your origin. When the requested object is in the edge
-- cache, the function doesn\'t execute.
--
-- - @origin-response@: The function executes after CloudFront receives a
-- response from the origin and before it caches the object in the
-- response. When the requested object is in the edge cache, the
-- function doesn\'t execute.
--
-- - @viewer-response@: The function executes before CloudFront returns
-- the requested object to the viewer. The function executes regardless
-- of whether the object was already in the edge cache.
--
-- If the origin returns an HTTP status code other than HTTP 200 (OK),
-- the function doesn\'t execute.
newLambdaFunctionAssociation ::
-- | 'lambdaFunctionARN'
Prelude.Text ->
-- | 'eventType'
EventType ->
LambdaFunctionAssociation
newLambdaFunctionAssociation
pLambdaFunctionARN_
pEventType_ =
LambdaFunctionAssociation'
{ includeBody =
Prelude.Nothing,
lambdaFunctionARN = pLambdaFunctionARN_,
eventType = pEventType_
}
-- | A flag that allows a Lambda\@Edge function to have read access to the
-- body content. For more information, see
-- <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-include-body-access.html Accessing the Request Body by Choosing the Include Body Option>
-- in the Amazon CloudFront Developer Guide.
lambdaFunctionAssociation_includeBody :: Lens.Lens' LambdaFunctionAssociation (Prelude.Maybe Prelude.Bool)
lambdaFunctionAssociation_includeBody = Lens.lens (\LambdaFunctionAssociation' {includeBody} -> includeBody) (\s@LambdaFunctionAssociation' {} a -> s {includeBody = a} :: LambdaFunctionAssociation)
-- | The ARN of the Lambda\@Edge function. You must specify the ARN of a
-- function version; you can\'t specify an alias or $LATEST.
lambdaFunctionAssociation_lambdaFunctionARN :: Lens.Lens' LambdaFunctionAssociation Prelude.Text
lambdaFunctionAssociation_lambdaFunctionARN = Lens.lens (\LambdaFunctionAssociation' {lambdaFunctionARN} -> lambdaFunctionARN) (\s@LambdaFunctionAssociation' {} a -> s {lambdaFunctionARN = a} :: LambdaFunctionAssociation)
-- | Specifies the event type that triggers a Lambda\@Edge function
-- invocation. You can specify the following values:
--
-- - @viewer-request@: The function executes when CloudFront receives a
-- request from a viewer and before it checks to see whether the
-- requested object is in the edge cache.
--
-- - @origin-request@: The function executes only when CloudFront sends a
-- request to your origin. When the requested object is in the edge
-- cache, the function doesn\'t execute.
--
-- - @origin-response@: The function executes after CloudFront receives a
-- response from the origin and before it caches the object in the
-- response. When the requested object is in the edge cache, the
-- function doesn\'t execute.
--
-- - @viewer-response@: The function executes before CloudFront returns
-- the requested object to the viewer. The function executes regardless
-- of whether the object was already in the edge cache.
--
-- If the origin returns an HTTP status code other than HTTP 200 (OK),
-- the function doesn\'t execute.
lambdaFunctionAssociation_eventType :: Lens.Lens' LambdaFunctionAssociation EventType
lambdaFunctionAssociation_eventType = Lens.lens (\LambdaFunctionAssociation' {eventType} -> eventType) (\s@LambdaFunctionAssociation' {} a -> s {eventType = a} :: LambdaFunctionAssociation)
instance Data.FromXML LambdaFunctionAssociation where
parseXML x =
LambdaFunctionAssociation'
Prelude.<$> (x Data..@? "IncludeBody")
Prelude.<*> (x Data..@ "LambdaFunctionARN")
Prelude.<*> (x Data..@ "EventType")
instance Prelude.Hashable LambdaFunctionAssociation where
hashWithSalt _salt LambdaFunctionAssociation' {..} =
_salt
`Prelude.hashWithSalt` includeBody
`Prelude.hashWithSalt` lambdaFunctionARN
`Prelude.hashWithSalt` eventType
instance Prelude.NFData LambdaFunctionAssociation where
rnf LambdaFunctionAssociation' {..} =
Prelude.rnf includeBody
`Prelude.seq` Prelude.rnf lambdaFunctionARN
`Prelude.seq` Prelude.rnf eventType
instance Data.ToXML LambdaFunctionAssociation where
toXML LambdaFunctionAssociation' {..} =
Prelude.mconcat
[ "IncludeBody" Data.@= includeBody,
"LambdaFunctionARN" Data.@= lambdaFunctionARN,
"EventType" Data.@= eventType
]