76 lines
2.6 KiB
C++
76 lines
2.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/sesv2/SESV2_EXPORTS.h>
|
|
#include <aws/sesv2/model/DomainDeliverabilityCampaign.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SESV2
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>An object that contains all the deliverability data for a specific campaign.
|
|
* This data is available for a campaign only if the campaign sent email by using a
|
|
* domain that the Deliverability dashboard is enabled for.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDomainDeliverabilityCampaignResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_SESV2_API GetDomainDeliverabilityCampaignResult
|
|
{
|
|
public:
|
|
GetDomainDeliverabilityCampaignResult();
|
|
GetDomainDeliverabilityCampaignResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetDomainDeliverabilityCampaignResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>An object that contains the deliverability data for the campaign.</p>
|
|
*/
|
|
inline const DomainDeliverabilityCampaign& GetDomainDeliverabilityCampaign() const{ return m_domainDeliverabilityCampaign; }
|
|
|
|
/**
|
|
* <p>An object that contains the deliverability data for the campaign.</p>
|
|
*/
|
|
inline void SetDomainDeliverabilityCampaign(const DomainDeliverabilityCampaign& value) { m_domainDeliverabilityCampaign = value; }
|
|
|
|
/**
|
|
* <p>An object that contains the deliverability data for the campaign.</p>
|
|
*/
|
|
inline void SetDomainDeliverabilityCampaign(DomainDeliverabilityCampaign&& value) { m_domainDeliverabilityCampaign = std::move(value); }
|
|
|
|
/**
|
|
* <p>An object that contains the deliverability data for the campaign.</p>
|
|
*/
|
|
inline GetDomainDeliverabilityCampaignResult& WithDomainDeliverabilityCampaign(const DomainDeliverabilityCampaign& value) { SetDomainDeliverabilityCampaign(value); return *this;}
|
|
|
|
/**
|
|
* <p>An object that contains the deliverability data for the campaign.</p>
|
|
*/
|
|
inline GetDomainDeliverabilityCampaignResult& WithDomainDeliverabilityCampaign(DomainDeliverabilityCampaign&& value) { SetDomainDeliverabilityCampaign(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
DomainDeliverabilityCampaign m_domainDeliverabilityCampaign;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SESV2
|
|
} // namespace Aws
|