/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Lambda { namespace Model { /** */ class PutFunctionRecursionConfigRequest : public LambdaRequest { public: AWS_LAMBDA_API PutFunctionRecursionConfigRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "PutFunctionRecursionConfig"; } AWS_LAMBDA_API Aws::String SerializePayload() const override; ///@{ /** *

The name or ARN of the Lambda function.

Name * formats

  • Function name – * my-function.

  • Function ARN – * arn:aws:lambda:us-west-2:123456789012:function:my-function.

    *
  • Partial ARN – * 123456789012:function:my-function.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline const Aws::String& GetFunctionName() const{ return m_functionName; } inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; } inline void SetFunctionName(const Aws::String& value) { m_functionNameHasBeenSet = true; m_functionName = value; } inline void SetFunctionName(Aws::String&& value) { m_functionNameHasBeenSet = true; m_functionName = std::move(value); } inline void SetFunctionName(const char* value) { m_functionNameHasBeenSet = true; m_functionName.assign(value); } inline PutFunctionRecursionConfigRequest& WithFunctionName(const Aws::String& value) { SetFunctionName(value); return *this;} inline PutFunctionRecursionConfigRequest& WithFunctionName(Aws::String&& value) { SetFunctionName(std::move(value)); return *this;} inline PutFunctionRecursionConfigRequest& WithFunctionName(const char* value) { SetFunctionName(value); return *this;} ///@} ///@{ /** *

If you set your function's recursive loop detection configuration to * Allow, Lambda doesn't take any action when it detects your function * being invoked as part of a recursive loop. We recommend that you only use this * setting if your design intentionally uses a Lambda function to write data back * to the same Amazon Web Services resource that invokes it.

If you set your * function's recursive loop detection configuration to Terminate, * Lambda stops your function being invoked and notifies you when it detects your * function being invoked as part of a recursive loop.

By default, Lambda * sets your function's configuration to Terminate.

*

If your design intentionally uses a Lambda function to write data back to the * same Amazon Web Services resource that invokes the function, then use caution * and implement suitable guard rails to prevent unexpected charges being billed to * your Amazon Web Services account. To learn more about best practices for using * recursive invocation patterns, see Recursive * patterns that cause run-away Lambda functions in Serverless Land.

* */ inline const RecursiveLoop& GetRecursiveLoop() const{ return m_recursiveLoop; } inline bool RecursiveLoopHasBeenSet() const { return m_recursiveLoopHasBeenSet; } inline void SetRecursiveLoop(const RecursiveLoop& value) { m_recursiveLoopHasBeenSet = true; m_recursiveLoop = value; } inline void SetRecursiveLoop(RecursiveLoop&& value) { m_recursiveLoopHasBeenSet = true; m_recursiveLoop = std::move(value); } inline PutFunctionRecursionConfigRequest& WithRecursiveLoop(const RecursiveLoop& value) { SetRecursiveLoop(value); return *this;} inline PutFunctionRecursionConfigRequest& WithRecursiveLoop(RecursiveLoop&& value) { SetRecursiveLoop(std::move(value)); return *this;} ///@} private: Aws::String m_functionName; bool m_functionNameHasBeenSet = false; RecursiveLoop m_recursiveLoop; bool m_recursiveLoopHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws