236 lines
9.3 KiB
C++
236 lines
9.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/lambda/Lambda_EXPORTS.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/lambda/model/DestinationConfig.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Lambda
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
class AWS_LAMBDA_API FunctionEventInvokeConfig
|
|
{
|
|
public:
|
|
FunctionEventInvokeConfig();
|
|
FunctionEventInvokeConfig(Aws::Utils::Json::JsonView jsonValue);
|
|
FunctionEventInvokeConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The date and time that the configuration was last updated.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastModified() const{ return m_lastModified; }
|
|
|
|
/**
|
|
* <p>The date and time that the configuration was last updated.</p>
|
|
*/
|
|
inline bool LastModifiedHasBeenSet() const { return m_lastModifiedHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The date and time that the configuration was last updated.</p>
|
|
*/
|
|
inline void SetLastModified(const Aws::Utils::DateTime& value) { m_lastModifiedHasBeenSet = true; m_lastModified = value; }
|
|
|
|
/**
|
|
* <p>The date and time that the configuration was last updated.</p>
|
|
*/
|
|
inline void SetLastModified(Aws::Utils::DateTime&& value) { m_lastModifiedHasBeenSet = true; m_lastModified = std::move(value); }
|
|
|
|
/**
|
|
* <p>The date and time that the configuration was last updated.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithLastModified(const Aws::Utils::DateTime& value) { SetLastModified(value); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time that the configuration was last updated.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithLastModified(Aws::Utils::DateTime&& value) { SetLastModified(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline const Aws::String& GetFunctionArn() const{ return m_functionArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline bool FunctionArnHasBeenSet() const { return m_functionArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline void SetFunctionArn(const Aws::String& value) { m_functionArnHasBeenSet = true; m_functionArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline void SetFunctionArn(Aws::String&& value) { m_functionArnHasBeenSet = true; m_functionArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline void SetFunctionArn(const char* value) { m_functionArnHasBeenSet = true; m_functionArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithFunctionArn(const Aws::String& value) { SetFunctionArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithFunctionArn(Aws::String&& value) { SetFunctionArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithFunctionArn(const char* value) { SetFunctionArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
*/
|
|
inline int GetMaximumRetryAttempts() const{ return m_maximumRetryAttempts; }
|
|
|
|
/**
|
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
*/
|
|
inline bool MaximumRetryAttemptsHasBeenSet() const { return m_maximumRetryAttemptsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
*/
|
|
inline void SetMaximumRetryAttempts(int value) { m_maximumRetryAttemptsHasBeenSet = true; m_maximumRetryAttempts = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithMaximumRetryAttempts(int value) { SetMaximumRetryAttempts(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum age of a request that Lambda sends to a function for
|
|
* processing.</p>
|
|
*/
|
|
inline int GetMaximumEventAgeInSeconds() const{ return m_maximumEventAgeInSeconds; }
|
|
|
|
/**
|
|
* <p>The maximum age of a request that Lambda sends to a function for
|
|
* processing.</p>
|
|
*/
|
|
inline bool MaximumEventAgeInSecondsHasBeenSet() const { return m_maximumEventAgeInSecondsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum age of a request that Lambda sends to a function for
|
|
* processing.</p>
|
|
*/
|
|
inline void SetMaximumEventAgeInSeconds(int value) { m_maximumEventAgeInSecondsHasBeenSet = true; m_maximumEventAgeInSeconds = value; }
|
|
|
|
/**
|
|
* <p>The maximum age of a request that Lambda sends to a function for
|
|
* processing.</p>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithMaximumEventAgeInSeconds(int value) { SetMaximumEventAgeInSeconds(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A destination for events after they have been sent to a function for
|
|
* processing.</p> <p class="title"> <b>Destinations</b> </p> <ul> <li> <p>
|
|
* <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li>
|
|
* <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b>
|
|
* - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an
|
|
* Amazon EventBridge event bus.</p> </li> </ul>
|
|
*/
|
|
inline const DestinationConfig& GetDestinationConfig() const{ return m_destinationConfig; }
|
|
|
|
/**
|
|
* <p>A destination for events after they have been sent to a function for
|
|
* processing.</p> <p class="title"> <b>Destinations</b> </p> <ul> <li> <p>
|
|
* <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li>
|
|
* <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b>
|
|
* - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an
|
|
* Amazon EventBridge event bus.</p> </li> </ul>
|
|
*/
|
|
inline bool DestinationConfigHasBeenSet() const { return m_destinationConfigHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A destination for events after they have been sent to a function for
|
|
* processing.</p> <p class="title"> <b>Destinations</b> </p> <ul> <li> <p>
|
|
* <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li>
|
|
* <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b>
|
|
* - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an
|
|
* Amazon EventBridge event bus.</p> </li> </ul>
|
|
*/
|
|
inline void SetDestinationConfig(const DestinationConfig& value) { m_destinationConfigHasBeenSet = true; m_destinationConfig = value; }
|
|
|
|
/**
|
|
* <p>A destination for events after they have been sent to a function for
|
|
* processing.</p> <p class="title"> <b>Destinations</b> </p> <ul> <li> <p>
|
|
* <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li>
|
|
* <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b>
|
|
* - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an
|
|
* Amazon EventBridge event bus.</p> </li> </ul>
|
|
*/
|
|
inline void SetDestinationConfig(DestinationConfig&& value) { m_destinationConfigHasBeenSet = true; m_destinationConfig = std::move(value); }
|
|
|
|
/**
|
|
* <p>A destination for events after they have been sent to a function for
|
|
* processing.</p> <p class="title"> <b>Destinations</b> </p> <ul> <li> <p>
|
|
* <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li>
|
|
* <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b>
|
|
* - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an
|
|
* Amazon EventBridge event bus.</p> </li> </ul>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithDestinationConfig(const DestinationConfig& value) { SetDestinationConfig(value); return *this;}
|
|
|
|
/**
|
|
* <p>A destination for events after they have been sent to a function for
|
|
* processing.</p> <p class="title"> <b>Destinations</b> </p> <ul> <li> <p>
|
|
* <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li>
|
|
* <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b>
|
|
* - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an
|
|
* Amazon EventBridge event bus.</p> </li> </ul>
|
|
*/
|
|
inline FunctionEventInvokeConfig& WithDestinationConfig(DestinationConfig&& value) { SetDestinationConfig(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Utils::DateTime m_lastModified;
|
|
bool m_lastModifiedHasBeenSet;
|
|
|
|
Aws::String m_functionArn;
|
|
bool m_functionArnHasBeenSet;
|
|
|
|
int m_maximumRetryAttempts;
|
|
bool m_maximumRetryAttemptsHasBeenSet;
|
|
|
|
int m_maximumEventAgeInSeconds;
|
|
bool m_maximumEventAgeInSecondsHasBeenSet;
|
|
|
|
DestinationConfig m_destinationConfig;
|
|
bool m_destinationConfigHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Lambda
|
|
} // namespace Aws
|