/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SESV2 { namespace Model { /** *

Information about an event destination for a configuration set.

See * Also:

AWS * API Reference

*/ class AWS_SESV2_API GetConfigurationSetEventDestinationsResult { public: GetConfigurationSetEventDestinationsResult(); GetConfigurationSetEventDestinationsResult(const Aws::AmazonWebServiceResult& result); GetConfigurationSetEventDestinationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline const Aws::Vector& GetEventDestinations() const{ return m_eventDestinations; } /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline void SetEventDestinations(const Aws::Vector& value) { m_eventDestinations = value; } /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline void SetEventDestinations(Aws::Vector&& value) { m_eventDestinations = std::move(value); } /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline GetConfigurationSetEventDestinationsResult& WithEventDestinations(const Aws::Vector& value) { SetEventDestinations(value); return *this;} /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline GetConfigurationSetEventDestinationsResult& WithEventDestinations(Aws::Vector&& value) { SetEventDestinations(std::move(value)); return *this;} /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline GetConfigurationSetEventDestinationsResult& AddEventDestinations(const EventDestination& value) { m_eventDestinations.push_back(value); return *this; } /** *

An array that includes all of the events destinations that have been * configured for the configuration set.

*/ inline GetConfigurationSetEventDestinationsResult& AddEventDestinations(EventDestination&& value) { m_eventDestinations.push_back(std::move(value)); return *this; } private: Aws::Vector m_eventDestinations; }; } // namespace Model } // namespace SESV2 } // namespace Aws