{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Lambda.PutFunctionEventInvokeConfig -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Configures options for -- -- on a function, version, or alias. If a configuration already exists for -- a function, version, or alias, this operation overwrites it. If you -- exclude any settings, they are removed. To set one option without -- affecting existing settings for other options, use -- UpdateFunctionEventInvokeConfig. -- -- By default, Lambda retries an asynchronous invocation twice if the -- function returns an error. It retains events in a queue for up to six -- hours. When an event fails all processing attempts or stays in the -- asynchronous invocation queue for too long, Lambda discards it. To -- retain discarded events, configure a dead-letter queue with -- UpdateFunctionConfiguration. -- -- To send an invocation record to a queue, topic, function, or event bus, -- specify a -- . -- You can configure separate destinations for successful invocations -- (on-success) and events that fail all processing attempts (on-failure). -- You can configure destinations in addition to or instead of a -- dead-letter queue. module Amazonka.Lambda.PutFunctionEventInvokeConfig ( -- * Creating a Request PutFunctionEventInvokeConfig (..), newPutFunctionEventInvokeConfig, -- * Request Lenses putFunctionEventInvokeConfig_destinationConfig, putFunctionEventInvokeConfig_maximumEventAgeInSeconds, putFunctionEventInvokeConfig_maximumRetryAttempts, putFunctionEventInvokeConfig_qualifier, putFunctionEventInvokeConfig_functionName, -- * Destructuring the Response FunctionEventInvokeConfig (..), newFunctionEventInvokeConfig, -- * Response Lenses functionEventInvokeConfig_destinationConfig, functionEventInvokeConfig_functionArn, functionEventInvokeConfig_lastModified, functionEventInvokeConfig_maximumEventAgeInSeconds, functionEventInvokeConfig_maximumRetryAttempts, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Lambda.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newPutFunctionEventInvokeConfig' smart constructor. data PutFunctionEventInvokeConfig = PutFunctionEventInvokeConfig' { -- | A destination for events after they have been sent to a function for -- processing. -- -- __Destinations__ -- -- - __Function__ - The Amazon Resource Name (ARN) of a Lambda function. -- -- - __Queue__ - The ARN of an SQS queue. -- -- - __Topic__ - The ARN of an SNS topic. -- -- - __Event Bus__ - The ARN of an Amazon EventBridge event bus. destinationConfig :: Prelude.Maybe DestinationConfig, -- | The maximum age of a request that Lambda sends to a function for -- processing. maximumEventAgeInSeconds :: Prelude.Maybe Prelude.Natural, -- | The maximum number of times to retry when the function returns an error. maximumRetryAttempts :: Prelude.Maybe Prelude.Natural, -- | A version number or alias name. qualifier :: Prelude.Maybe Prelude.Text, -- | The name of the Lambda function, version, or alias. -- -- __Name formats__ -- -- - __Function name__ - @my-function@ (name-only), @my-function:v1@ -- (with alias). -- -- - __Function ARN__ - -- @arn:aws:lambda:us-west-2:123456789012:function:my-function@. -- -- - __Partial ARN__ - @123456789012:function:my-function@. -- -- You can append a version number or alias to any of the formats. The -- length constraint applies only to the full ARN. If you specify only the -- function name, it is limited to 64 characters in length. functionName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PutFunctionEventInvokeConfig' 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: -- -- 'destinationConfig', 'putFunctionEventInvokeConfig_destinationConfig' - A destination for events after they have been sent to a function for -- processing. -- -- __Destinations__ -- -- - __Function__ - The Amazon Resource Name (ARN) of a Lambda function. -- -- - __Queue__ - The ARN of an SQS queue. -- -- - __Topic__ - The ARN of an SNS topic. -- -- - __Event Bus__ - The ARN of an Amazon EventBridge event bus. -- -- 'maximumEventAgeInSeconds', 'putFunctionEventInvokeConfig_maximumEventAgeInSeconds' - The maximum age of a request that Lambda sends to a function for -- processing. -- -- 'maximumRetryAttempts', 'putFunctionEventInvokeConfig_maximumRetryAttempts' - The maximum number of times to retry when the function returns an error. -- -- 'qualifier', 'putFunctionEventInvokeConfig_qualifier' - A version number or alias name. -- -- 'functionName', 'putFunctionEventInvokeConfig_functionName' - The name of the Lambda function, version, or alias. -- -- __Name formats__ -- -- - __Function name__ - @my-function@ (name-only), @my-function:v1@ -- (with alias). -- -- - __Function ARN__ - -- @arn:aws:lambda:us-west-2:123456789012:function:my-function@. -- -- - __Partial ARN__ - @123456789012:function:my-function@. -- -- You can append a version number or alias to any of the formats. The -- length constraint applies only to the full ARN. If you specify only the -- function name, it is limited to 64 characters in length. newPutFunctionEventInvokeConfig :: -- | 'functionName' Prelude.Text -> PutFunctionEventInvokeConfig newPutFunctionEventInvokeConfig pFunctionName_ = PutFunctionEventInvokeConfig' { destinationConfig = Prelude.Nothing, maximumEventAgeInSeconds = Prelude.Nothing, maximumRetryAttempts = Prelude.Nothing, qualifier = Prelude.Nothing, functionName = pFunctionName_ } -- | A destination for events after they have been sent to a function for -- processing. -- -- __Destinations__ -- -- - __Function__ - The Amazon Resource Name (ARN) of a Lambda function. -- -- - __Queue__ - The ARN of an SQS queue. -- -- - __Topic__ - The ARN of an SNS topic. -- -- - __Event Bus__ - The ARN of an Amazon EventBridge event bus. putFunctionEventInvokeConfig_destinationConfig :: Lens.Lens' PutFunctionEventInvokeConfig (Prelude.Maybe DestinationConfig) putFunctionEventInvokeConfig_destinationConfig = Lens.lens (\PutFunctionEventInvokeConfig' {destinationConfig} -> destinationConfig) (\s@PutFunctionEventInvokeConfig' {} a -> s {destinationConfig = a} :: PutFunctionEventInvokeConfig) -- | The maximum age of a request that Lambda sends to a function for -- processing. putFunctionEventInvokeConfig_maximumEventAgeInSeconds :: Lens.Lens' PutFunctionEventInvokeConfig (Prelude.Maybe Prelude.Natural) putFunctionEventInvokeConfig_maximumEventAgeInSeconds = Lens.lens (\PutFunctionEventInvokeConfig' {maximumEventAgeInSeconds} -> maximumEventAgeInSeconds) (\s@PutFunctionEventInvokeConfig' {} a -> s {maximumEventAgeInSeconds = a} :: PutFunctionEventInvokeConfig) -- | The maximum number of times to retry when the function returns an error. putFunctionEventInvokeConfig_maximumRetryAttempts :: Lens.Lens' PutFunctionEventInvokeConfig (Prelude.Maybe Prelude.Natural) putFunctionEventInvokeConfig_maximumRetryAttempts = Lens.lens (\PutFunctionEventInvokeConfig' {maximumRetryAttempts} -> maximumRetryAttempts) (\s@PutFunctionEventInvokeConfig' {} a -> s {maximumRetryAttempts = a} :: PutFunctionEventInvokeConfig) -- | A version number or alias name. putFunctionEventInvokeConfig_qualifier :: Lens.Lens' PutFunctionEventInvokeConfig (Prelude.Maybe Prelude.Text) putFunctionEventInvokeConfig_qualifier = Lens.lens (\PutFunctionEventInvokeConfig' {qualifier} -> qualifier) (\s@PutFunctionEventInvokeConfig' {} a -> s {qualifier = a} :: PutFunctionEventInvokeConfig) -- | The name of the Lambda function, version, or alias. -- -- __Name formats__ -- -- - __Function name__ - @my-function@ (name-only), @my-function:v1@ -- (with alias). -- -- - __Function ARN__ - -- @arn:aws:lambda:us-west-2:123456789012:function:my-function@. -- -- - __Partial ARN__ - @123456789012:function:my-function@. -- -- You can append a version number or alias to any of the formats. The -- length constraint applies only to the full ARN. If you specify only the -- function name, it is limited to 64 characters in length. putFunctionEventInvokeConfig_functionName :: Lens.Lens' PutFunctionEventInvokeConfig Prelude.Text putFunctionEventInvokeConfig_functionName = Lens.lens (\PutFunctionEventInvokeConfig' {functionName} -> functionName) (\s@PutFunctionEventInvokeConfig' {} a -> s {functionName = a} :: PutFunctionEventInvokeConfig) instance Core.AWSRequest PutFunctionEventInvokeConfig where type AWSResponse PutFunctionEventInvokeConfig = FunctionEventInvokeConfig request overrides = Request.putJSON (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable PutFunctionEventInvokeConfig where hashWithSalt _salt PutFunctionEventInvokeConfig' {..} = _salt `Prelude.hashWithSalt` destinationConfig `Prelude.hashWithSalt` maximumEventAgeInSeconds `Prelude.hashWithSalt` maximumRetryAttempts `Prelude.hashWithSalt` qualifier `Prelude.hashWithSalt` functionName instance Prelude.NFData PutFunctionEventInvokeConfig where rnf PutFunctionEventInvokeConfig' {..} = Prelude.rnf destinationConfig `Prelude.seq` Prelude.rnf maximumEventAgeInSeconds `Prelude.seq` Prelude.rnf maximumRetryAttempts `Prelude.seq` Prelude.rnf qualifier `Prelude.seq` Prelude.rnf functionName instance Data.ToHeaders PutFunctionEventInvokeConfig where toHeaders = Prelude.const Prelude.mempty instance Data.ToJSON PutFunctionEventInvokeConfig where toJSON PutFunctionEventInvokeConfig' {..} = Data.object ( Prelude.catMaybes [ ("DestinationConfig" Data..=) Prelude.<$> destinationConfig, ("MaximumEventAgeInSeconds" Data..=) Prelude.<$> maximumEventAgeInSeconds, ("MaximumRetryAttempts" Data..=) Prelude.<$> maximumRetryAttempts ] ) instance Data.ToPath PutFunctionEventInvokeConfig where toPath PutFunctionEventInvokeConfig' {..} = Prelude.mconcat [ "/2019-09-25/functions/", Data.toBS functionName, "/event-invoke-config" ] instance Data.ToQuery PutFunctionEventInvokeConfig where toQuery PutFunctionEventInvokeConfig' {..} = Prelude.mconcat ["Qualifier" Data.=: qualifier]