/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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 TopicConfiguration
* instead.See Also:
AWS
* API Reference
A collection of events related to objects
*/ inline const Aws::VectorA collection of events related to objects
*/ inline bool EventsHasBeenSet() const { return m_eventsHasBeenSet; } /** *A collection of events related to objects
*/ inline void SetEvents(const Aws::VectorA collection of events related to objects
*/ inline void SetEvents(Aws::VectorA collection of events related to objects
*/ inline TopicConfigurationDeprecated& WithEvents(const Aws::VectorA collection of events related to objects
*/ inline TopicConfigurationDeprecated& WithEvents(Aws::VectorA collection of events related to objects
*/ inline TopicConfigurationDeprecated& AddEvents(const Event& value) { m_eventsHasBeenSet = true; m_events.push_back(value); return *this; } /** *A collection of events related to objects
*/ inline TopicConfigurationDeprecated& AddEvents(Event&& value) { m_eventsHasBeenSet = true; m_events.push_back(std::move(value)); return *this; } /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline const Aws::String& GetTopic() const{ return m_topic; } /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline bool TopicHasBeenSet() const { return m_topicHasBeenSet; } /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline void SetTopic(const Aws::String& value) { m_topicHasBeenSet = true; m_topic = value; } /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline void SetTopic(Aws::String&& value) { m_topicHasBeenSet = true; m_topic = std::move(value); } /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline void SetTopic(const char* value) { m_topicHasBeenSet = true; m_topic.assign(value); } /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline TopicConfigurationDeprecated& WithTopic(const Aws::String& value) { SetTopic(value); return *this;} /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline TopicConfigurationDeprecated& WithTopic(Aws::String&& value) { SetTopic(std::move(value)); return *this;} /** *Amazon SNS topic to which Amazon S3 will publish a message to report the * specified events for the bucket.
*/ inline TopicConfigurationDeprecated& WithTopic(const char* value) { SetTopic(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet; Aws::Vector