AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteCampaignCommunicationLimitsRequest.h
1
6#pragma once
7#include <aws/connectcampaignsv2/ConnectCampaignsV2_EXPORTS.h>
8#include <aws/connectcampaignsv2/ConnectCampaignsV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/connectcampaignsv2/model/CommunicationLimitsConfigType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace ConnectCampaignsV2
20{
21namespace Model
22{
23
31 {
32 public:
33 AWS_CONNECTCAMPAIGNSV2_API DeleteCampaignCommunicationLimitsRequest() = default;
34
35 // Service request name is the Operation name which will send this request out,
36 // each operation should has unique request name, so that we can get operation's name from this request.
37 // Note: this is not true for response, multiple operations may have the same response name,
38 // so we can not get operation's name from response.
39 inline virtual const char* GetServiceRequestName() const override { return "DeleteCampaignCommunicationLimits"; }
40
41 AWS_CONNECTCAMPAIGNSV2_API Aws::String SerializePayload() const override;
42
43 AWS_CONNECTCAMPAIGNSV2_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
44
45
47
48 inline const Aws::String& GetId() const { return m_id; }
49 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
50 template<typename IdT = Aws::String>
51 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
52 template<typename IdT = Aws::String>
53 DeleteCampaignCommunicationLimitsRequest& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
55
57
58 inline CommunicationLimitsConfigType GetConfig() const { return m_config; }
59 inline bool ConfigHasBeenSet() const { return m_configHasBeenSet; }
60 inline void SetConfig(CommunicationLimitsConfigType value) { m_configHasBeenSet = true; m_config = value; }
63 private:
64
65 Aws::String m_id;
66 bool m_idHasBeenSet = false;
67
69 bool m_configHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace ConnectCampaignsV2
74} // namespace Aws
AWS_CONNECTCAMPAIGNSV2_API DeleteCampaignCommunicationLimitsRequest()=default
AWS_CONNECTCAMPAIGNSV2_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_CONNECTCAMPAIGNSV2_API Aws::String SerializePayload() const override
DeleteCampaignCommunicationLimitsRequest & WithConfig(CommunicationLimitsConfigType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String