This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-email/include/aws/email/model/DescribeConfigurationSetResult.h

228 lines
8.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/email/SES_EXPORTS.h>
#include <aws/email/model/ConfigurationSet.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/email/model/TrackingOptions.h>
#include <aws/email/model/DeliveryOptions.h>
#include <aws/email/model/ReputationOptions.h>
#include <aws/email/model/ResponseMetadata.h>
#include <aws/email/model/EventDestination.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace SES
{
namespace Model
{
/**
* <p>Represents the details of a configuration set. Configuration sets enable you
* to publish email sending events. For information about using configuration sets,
* see the <a
* href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html">Amazon
* SES Developer Guide</a>.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSetResponse">AWS
* API Reference</a></p>
*/
class AWS_SES_API DescribeConfigurationSetResult
{
public:
DescribeConfigurationSetResult();
DescribeConfigurationSetResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
DescribeConfigurationSetResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>The configuration set object associated with the specified configuration
* set.</p>
*/
inline const ConfigurationSet& GetConfigurationSet() const{ return m_configurationSet; }
/**
* <p>The configuration set object associated with the specified configuration
* set.</p>
*/
inline void SetConfigurationSet(const ConfigurationSet& value) { m_configurationSet = value; }
/**
* <p>The configuration set object associated with the specified configuration
* set.</p>
*/
inline void SetConfigurationSet(ConfigurationSet&& value) { m_configurationSet = std::move(value); }
/**
* <p>The configuration set object associated with the specified configuration
* set.</p>
*/
inline DescribeConfigurationSetResult& WithConfigurationSet(const ConfigurationSet& value) { SetConfigurationSet(value); return *this;}
/**
* <p>The configuration set object associated with the specified configuration
* set.</p>
*/
inline DescribeConfigurationSetResult& WithConfigurationSet(ConfigurationSet&& value) { SetConfigurationSet(std::move(value)); return *this;}
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline const Aws::Vector<EventDestination>& GetEventDestinations() const{ return m_eventDestinations; }
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline void SetEventDestinations(const Aws::Vector<EventDestination>& value) { m_eventDestinations = value; }
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline void SetEventDestinations(Aws::Vector<EventDestination>&& value) { m_eventDestinations = std::move(value); }
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline DescribeConfigurationSetResult& WithEventDestinations(const Aws::Vector<EventDestination>& value) { SetEventDestinations(value); return *this;}
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline DescribeConfigurationSetResult& WithEventDestinations(Aws::Vector<EventDestination>&& value) { SetEventDestinations(std::move(value)); return *this;}
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline DescribeConfigurationSetResult& AddEventDestinations(const EventDestination& value) { m_eventDestinations.push_back(value); return *this; }
/**
* <p>A list of event destinations associated with the configuration set. </p>
*/
inline DescribeConfigurationSetResult& AddEventDestinations(EventDestination&& value) { m_eventDestinations.push_back(std::move(value)); return *this; }
/**
* <p>The name of the custom open and click tracking domain associated with the
* configuration set.</p>
*/
inline const TrackingOptions& GetTrackingOptions() const{ return m_trackingOptions; }
/**
* <p>The name of the custom open and click tracking domain associated with the
* configuration set.</p>
*/
inline void SetTrackingOptions(const TrackingOptions& value) { m_trackingOptions = value; }
/**
* <p>The name of the custom open and click tracking domain associated with the
* configuration set.</p>
*/
inline void SetTrackingOptions(TrackingOptions&& value) { m_trackingOptions = std::move(value); }
/**
* <p>The name of the custom open and click tracking domain associated with the
* configuration set.</p>
*/
inline DescribeConfigurationSetResult& WithTrackingOptions(const TrackingOptions& value) { SetTrackingOptions(value); return *this;}
/**
* <p>The name of the custom open and click tracking domain associated with the
* configuration set.</p>
*/
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;}
/**
* <p>An object that represents the reputation settings for the configuration set.
* </p>
*/
inline const ReputationOptions& GetReputationOptions() const{ return m_reputationOptions; }
/**
* <p>An object that represents the reputation settings for the configuration set.
* </p>
*/
inline void SetReputationOptions(const ReputationOptions& value) { m_reputationOptions = value; }
/**
* <p>An object that represents the reputation settings for the configuration set.
* </p>
*/
inline void SetReputationOptions(ReputationOptions&& value) { m_reputationOptions = std::move(value); }
/**
* <p>An object that represents the reputation settings for the configuration set.
* </p>
*/
inline DescribeConfigurationSetResult& WithReputationOptions(const ReputationOptions& value) { SetReputationOptions(value); return *this;}
/**
* <p>An object that represents the reputation settings for the configuration set.
* </p>
*/
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<EventDestination> m_eventDestinations;
TrackingOptions m_trackingOptions;
DeliveryOptions m_deliveryOptions;
ReputationOptions m_reputationOptions;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace SES
} // namespace Aws