/** * 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 Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { /** *

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

*/ class AWS_S3_API TopicConfigurationDeprecated { public: TopicConfigurationDeprecated(); TopicConfigurationDeprecated(const Aws::Utils::Xml::XmlNode& xmlNode); TopicConfigurationDeprecated& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; inline const Aws::String& GetId() const{ return m_id; } inline bool IdHasBeenSet() const { return m_idHasBeenSet; } inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } inline TopicConfigurationDeprecated& WithId(const Aws::String& value) { SetId(value); return *this;} inline TopicConfigurationDeprecated& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} inline TopicConfigurationDeprecated& WithId(const char* value) { SetId(value); return *this;} /** *

A collection of events related to objects

*/ inline const Aws::Vector& GetEvents() const{ return m_events; } /** *

A 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::Vector& value) { m_eventsHasBeenSet = true; m_events = value; } /** *

A collection of events related to objects

*/ inline void SetEvents(Aws::Vector&& value) { m_eventsHasBeenSet = true; m_events = std::move(value); } /** *

A collection of events related to objects

*/ inline TopicConfigurationDeprecated& WithEvents(const Aws::Vector& value) { SetEvents(value); return *this;} /** *

A collection of events related to objects

*/ inline TopicConfigurationDeprecated& WithEvents(Aws::Vector&& value) { SetEvents(std::move(value)); return *this;} /** *

A 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 m_events; bool m_eventsHasBeenSet; Aws::String m_topic; bool m_topicHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws