AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetDomainDeliverabilityCampaignRequest.h
1
6#pragma once
7#include <aws/pinpoint-email/PinpointEmail_EXPORTS.h>
8#include <aws/pinpoint-email/PinpointEmailRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace PinpointEmail
15{
16namespace Model
17{
18
29 {
30 public:
31 AWS_PINPOINTEMAIL_API GetDomainDeliverabilityCampaignRequest() = default;
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "GetDomainDeliverabilityCampaign"; }
38
39 AWS_PINPOINTEMAIL_API Aws::String SerializePayload() const override;
40
41
43
50 inline const Aws::String& GetCampaignId() const { return m_campaignId; }
51 inline bool CampaignIdHasBeenSet() const { return m_campaignIdHasBeenSet; }
52 template<typename CampaignIdT = Aws::String>
53 void SetCampaignId(CampaignIdT&& value) { m_campaignIdHasBeenSet = true; m_campaignId = std::forward<CampaignIdT>(value); }
54 template<typename CampaignIdT = Aws::String>
55 GetDomainDeliverabilityCampaignRequest& WithCampaignId(CampaignIdT&& value) { SetCampaignId(std::forward<CampaignIdT>(value)); return *this;}
57 private:
58
59 Aws::String m_campaignId;
60 bool m_campaignIdHasBeenSet = false;
61 };
62
63} // namespace Model
64} // namespace PinpointEmail
65} // namespace Aws
AWS_PINPOINTEMAIL_API Aws::String SerializePayload() const override
AWS_PINPOINTEMAIL_API GetDomainDeliverabilityCampaignRequest()=default
GetDomainDeliverabilityCampaignRequest & WithCampaignId(CampaignIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String