AWS SDK for C++

AWS SDK for C++ Version 1.11.684

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