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

Represents the details of a configuration set. Configuration sets enable you * to publish email sending events. For information about using configuration sets, * see the Amazon * SES Developer Guide.

See Also:

AWS * API Reference

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

The configuration set object associated with the specified configuration * set.

*/ inline const ConfigurationSet& GetConfigurationSet() const{ return m_configurationSet; } /** *

The configuration set object associated with the specified configuration * set.

*/ inline void SetConfigurationSet(const ConfigurationSet& value) { m_configurationSet = value; } /** *

The configuration set object associated with the specified configuration * set.

*/ inline void SetConfigurationSet(ConfigurationSet&& value) { m_configurationSet = std::move(value); } /** *

The configuration set object associated with the specified configuration * set.

*/ inline DescribeConfigurationSetResult& WithConfigurationSet(const ConfigurationSet& value) { SetConfigurationSet(value); return *this;} /** *

The configuration set object associated with the specified configuration * set.

*/ inline DescribeConfigurationSetResult& WithConfigurationSet(ConfigurationSet&& value) { SetConfigurationSet(std::move(value)); return *this;} /** *

A list of event destinations associated with the configuration set.

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

A list of event destinations associated with the configuration set.

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

A list of event destinations associated with the configuration set.

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

A list of event destinations associated with the configuration set.

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

A list of event destinations associated with the configuration set.

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

A list of event destinations associated with the configuration set.

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

A list of event destinations associated with the configuration set.

*/ inline DescribeConfigurationSetResult& AddEventDestinations(EventDestination&& value) { m_eventDestinations.push_back(std::move(value)); return *this; } /** *

The name of the custom open and click tracking domain associated with the * configuration set.

*/ inline const TrackingOptions& GetTrackingOptions() const{ return m_trackingOptions; } /** *

The name of the custom open and click tracking domain associated with the * configuration set.

*/ inline void SetTrackingOptions(const TrackingOptions& value) { m_trackingOptions = value; } /** *

The name of the custom open and click tracking domain associated with the * configuration set.

*/ inline void SetTrackingOptions(TrackingOptions&& value) { m_trackingOptions = std::move(value); } /** *

The name of the custom open and click tracking domain associated with the * configuration set.

*/ inline DescribeConfigurationSetResult& WithTrackingOptions(const TrackingOptions& value) { SetTrackingOptions(value); return *this;} /** *

The name of the custom open and click tracking domain associated with the * configuration set.

*/ inline DescribeConfigurationSetResult& WithTrackingOptions(TrackingOptions&& value) { SetTrackingOptions(std::move(value)); return *this;} inline const DeliveryOptions& GetDeliveryOptions() const{ return m_deliveryOptions; } inline void SetDeliveryOptions(const DeliveryOptions& value) { m_deliveryOptions = value; } inline void SetDeliveryOptions(DeliveryOptions&& value) { m_deliveryOptions = std::move(value); } inline DescribeConfigurationSetResult& WithDeliveryOptions(const DeliveryOptions& value) { SetDeliveryOptions(value); return *this;} inline DescribeConfigurationSetResult& WithDeliveryOptions(DeliveryOptions&& value) { SetDeliveryOptions(std::move(value)); return *this;} /** *

An object that represents the reputation settings for the configuration set. *

*/ inline const ReputationOptions& GetReputationOptions() const{ return m_reputationOptions; } /** *

An object that represents the reputation settings for the configuration set. *

*/ inline void SetReputationOptions(const ReputationOptions& value) { m_reputationOptions = value; } /** *

An object that represents the reputation settings for the configuration set. *

*/ inline void SetReputationOptions(ReputationOptions&& value) { m_reputationOptions = std::move(value); } /** *

An object that represents the reputation settings for the configuration set. *

*/ inline DescribeConfigurationSetResult& WithReputationOptions(const ReputationOptions& value) { SetReputationOptions(value); return *this;} /** *

An object that represents the reputation settings for the configuration set. *

*/ inline DescribeConfigurationSetResult& WithReputationOptions(ReputationOptions&& value) { SetReputationOptions(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline DescribeConfigurationSetResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DescribeConfigurationSetResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: ConfigurationSet m_configurationSet; Aws::Vector m_eventDestinations; TrackingOptions m_trackingOptions; DeliveryOptions m_deliveryOptions; ReputationOptions m_reputationOptions; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace SES } // namespace Aws