aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h
diff options
context:
space:
mode:
authorunril <unril@yandex-team.ru>2022-02-10 16:46:05 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:05 +0300
commit11ae9eca250d0188b7962459cbc6706719e7dca9 (patch)
tree4b7d6755091980d33210de19b2eb35a401a761ea /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h
parent9c914f41ba5e9f9365f404e892197553ac23809e (diff)
downloadydb-11ae9eca250d0188b7962459cbc6706719e7dca9.tar.gz
Restoring authorship annotation for <unril@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h122
1 files changed, 61 insertions, 61 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h
index d85743d470..e93c6bb969 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CloudFunctionConfiguration.h
@@ -24,12 +24,12 @@ namespace S3
namespace Model
{
- /**
+ /**
* <p>Container for specifying the AWS Lambda notification
* configuration.</p><p><h3>See Also:</h3> <a
- * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CloudFunctionConfiguration">AWS
- * API Reference</a></p>
- */
+ * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CloudFunctionConfiguration">AWS
+ * API Reference</a></p>
+ */
class AWS_S3_API CloudFunctionConfiguration
{
public:
@@ -44,9 +44,9 @@ namespace Model
inline const Aws::String& GetId() const{ return m_id; }
- inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
-
-
+ inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
+
+
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
@@ -65,134 +65,134 @@ namespace Model
inline CloudFunctionConfiguration& WithId(const char* value) { SetId(value); return *this;}
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline const Aws::Vector<Event>& GetEvents() const{ return m_events; }
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
- inline bool EventsHasBeenSet() const { return m_eventsHasBeenSet; }
-
- /**
+ */
+ inline bool EventsHasBeenSet() const { return m_eventsHasBeenSet; }
+
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline void SetEvents(const Aws::Vector<Event>& value) { m_eventsHasBeenSet = true; m_events = value; }
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline void SetEvents(Aws::Vector<Event>&& value) { m_eventsHasBeenSet = true; m_events = std::move(value); }
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline CloudFunctionConfiguration& WithEvents(const Aws::Vector<Event>& value) { SetEvents(value); return *this;}
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline CloudFunctionConfiguration& WithEvents(Aws::Vector<Event>&& value) { SetEvents(std::move(value)); return *this;}
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline CloudFunctionConfiguration& AddEvents(const Event& value) { m_eventsHasBeenSet = true; m_events.push_back(value); return *this; }
- /**
+ /**
* <p>Bucket events for which to send notifications.</p>
- */
+ */
inline CloudFunctionConfiguration& AddEvents(Event&& value) { m_eventsHasBeenSet = true; m_events.push_back(std::move(value)); return *this; }
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline const Aws::String& GetCloudFunction() const{ return m_cloudFunction; }
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
- inline bool CloudFunctionHasBeenSet() const { return m_cloudFunctionHasBeenSet; }
-
- /**
+ */
+ inline bool CloudFunctionHasBeenSet() const { return m_cloudFunctionHasBeenSet; }
+
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline void SetCloudFunction(const Aws::String& value) { m_cloudFunctionHasBeenSet = true; m_cloudFunction = value; }
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline void SetCloudFunction(Aws::String&& value) { m_cloudFunctionHasBeenSet = true; m_cloudFunction = std::move(value); }
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline void SetCloudFunction(const char* value) { m_cloudFunctionHasBeenSet = true; m_cloudFunction.assign(value); }
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline CloudFunctionConfiguration& WithCloudFunction(const Aws::String& value) { SetCloudFunction(value); return *this;}
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline CloudFunctionConfiguration& WithCloudFunction(Aws::String&& value) { SetCloudFunction(std::move(value)); return *this;}
- /**
+ /**
* <p>Lambda cloud function ARN that Amazon S3 can invoke when it detects events of
* the specified type.</p>
- */
+ */
inline CloudFunctionConfiguration& WithCloudFunction(const char* value) { SetCloudFunction(value); return *this;}
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline const Aws::String& GetInvocationRole() const{ return m_invocationRole; }
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
- inline bool InvocationRoleHasBeenSet() const { return m_invocationRoleHasBeenSet; }
-
- /**
+ */
+ inline bool InvocationRoleHasBeenSet() const { return m_invocationRoleHasBeenSet; }
+
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline void SetInvocationRole(const Aws::String& value) { m_invocationRoleHasBeenSet = true; m_invocationRole = value; }
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline void SetInvocationRole(Aws::String&& value) { m_invocationRoleHasBeenSet = true; m_invocationRole = std::move(value); }
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline void SetInvocationRole(const char* value) { m_invocationRoleHasBeenSet = true; m_invocationRole.assign(value); }
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline CloudFunctionConfiguration& WithInvocationRole(const Aws::String& value) { SetInvocationRole(value); return *this;}
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline CloudFunctionConfiguration& WithInvocationRole(Aws::String&& value) { SetInvocationRole(std::move(value)); return *this;}
- /**
+ /**
* <p>The role supporting the invocation of the Lambda function</p>
- */
+ */
inline CloudFunctionConfiguration& WithInvocationRole(const char* value) { SetInvocationRole(value); return *this;}
private: