diff options
author | unril <unril@yandex-team.ru> | 2022-02-10 16:46:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:05 +0300 |
commit | 11ae9eca250d0188b7962459cbc6706719e7dca9 (patch) | |
tree | 4b7d6755091980d33210de19b2eb35a401a761ea /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/TopicConfigurationDeprecated.h | |
parent | 9c914f41ba5e9f9365f404e892197553ac23809e (diff) | |
download | ydb-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/TopicConfigurationDeprecated.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/TopicConfigurationDeprecated.h | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/TopicConfigurationDeprecated.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/TopicConfigurationDeprecated.h index 23592ee28e..c75488dce0 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/TopicConfigurationDeprecated.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/TopicConfigurationDeprecated.h @@ -24,15 +24,15 @@ namespace S3 namespace Model { - /** + /** * <p>A container for specifying the configuration for publication of messages to * an Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects * specified events. This data type is deprecated. Use <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_TopicConfiguration.html">TopicConfiguration</a> * instead.</p><p><h3>See Also:</h3> <a - * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/TopicConfigurationDeprecated">AWS - * API Reference</a></p> - */ + * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/TopicConfigurationDeprecated">AWS + * API Reference</a></p> + */ class AWS_S3_API TopicConfigurationDeprecated { public: @@ -47,9 +47,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; } @@ -68,44 +68,44 @@ namespace Model inline TopicConfigurationDeprecated& WithId(const char* value) { SetId(value); return *this;} - /** + /** * <p>A collection of events related to objects</p> - */ + */ inline const Aws::Vector<Event>& GetEvents() const{ return m_events; } - /** + /** * <p>A collection of events related to objects</p> - */ - inline bool EventsHasBeenSet() const { return m_eventsHasBeenSet; } - - /** + */ + inline bool EventsHasBeenSet() const { return m_eventsHasBeenSet; } + + /** * <p>A collection of events related to objects</p> - */ + */ inline void SetEvents(const Aws::Vector<Event>& value) { m_eventsHasBeenSet = true; m_events = value; } - /** + /** * <p>A collection of events related to objects</p> - */ + */ inline void SetEvents(Aws::Vector<Event>&& value) { m_eventsHasBeenSet = true; m_events = std::move(value); } - /** + /** * <p>A collection of events related to objects</p> - */ + */ inline TopicConfigurationDeprecated& WithEvents(const Aws::Vector<Event>& value) { SetEvents(value); return *this;} - /** + /** * <p>A collection of events related to objects</p> - */ + */ inline TopicConfigurationDeprecated& WithEvents(Aws::Vector<Event>&& value) { SetEvents(std::move(value)); return *this;} - /** + /** * <p>A collection of events related to objects</p> - */ + */ inline TopicConfigurationDeprecated& AddEvents(const Event& value) { m_eventsHasBeenSet = true; m_events.push_back(value); return *this; } - /** + /** * <p>A collection of events related to objects</p> - */ + */ inline TopicConfigurationDeprecated& AddEvents(Event&& value) { m_eventsHasBeenSet = true; m_events.push_back(std::move(value)); return *this; } @@ -119,12 +119,12 @@ namespace Model * <p>Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.</p> */ - inline bool TopicHasBeenSet() const { return m_topicHasBeenSet; } - - /** - * <p>Amazon SNS topic to which Amazon S3 will publish a message to report the - * specified events for the bucket.</p> - */ + inline bool TopicHasBeenSet() const { return m_topicHasBeenSet; } + + /** + * <p>Amazon SNS topic to which Amazon S3 will publish a message to report the + * specified events for the bucket.</p> + */ inline void SetTopic(const Aws::String& value) { m_topicHasBeenSet = true; m_topic = value; } /** |