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-pinpoint-email/include/aws/pinpoint-email/model/GetDomainDeliverabilityCampaignRequest.h

123 lines
5.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/pinpoint-email/PinpointEmail_EXPORTS.h>
#include <aws/pinpoint-email/PinpointEmailRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace PinpointEmail
{
namespace Model
{
/**
* <p>Retrieve 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
* (<code>PutDeliverabilityDashboardOption</code> operation).</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetDomainDeliverabilityCampaignRequest">AWS
* API Reference</a></p>
*/
class AWS_PINPOINTEMAIL_API GetDomainDeliverabilityCampaignRequest : public PinpointEmailRequest
{
public:
GetDomainDeliverabilityCampaignRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "GetDomainDeliverabilityCampaign"; }
Aws::String SerializePayload() const override;
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline const Aws::String& GetCampaignId() const{ return m_campaignId; }
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline bool CampaignIdHasBeenSet() const { return m_campaignIdHasBeenSet; }
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline void SetCampaignId(const Aws::String& value) { m_campaignIdHasBeenSet = true; m_campaignId = value; }
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline void SetCampaignId(Aws::String&& value) { m_campaignIdHasBeenSet = true; m_campaignId = std::move(value); }
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline void SetCampaignId(const char* value) { m_campaignIdHasBeenSet = true; m_campaignId.assign(value); }
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline GetDomainDeliverabilityCampaignRequest& WithCampaignId(const Aws::String& value) { SetCampaignId(value); return *this;}
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline GetDomainDeliverabilityCampaignRequest& WithCampaignId(Aws::String&& value) { SetCampaignId(std::move(value)); return *this;}
/**
* <p>The unique identifier for the campaign. Amazon Pinpoint automatically
* generates and assigns this identifier to a campaign. This value is not the same
* as the campaign identifier that Amazon Pinpoint assigns to campaigns that you
* create and manage by using the Amazon Pinpoint API or the Amazon Pinpoint
* console.</p>
*/
inline GetDomainDeliverabilityCampaignRequest& WithCampaignId(const char* value) { SetCampaignId(value); return *this;}
private:
Aws::String m_campaignId;
bool m_campaignIdHasBeenSet;
};
} // namespace Model
} // namespace PinpointEmail
} // namespace Aws