AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
DialerConfig.h
1
6#pragma once
7#include <aws/connectcampaigns/ConnectCampaigns_EXPORTS.h>
8#include <aws/connectcampaigns/model/AgentlessDialerConfig.h>
9#include <aws/connectcampaigns/model/PredictiveDialerConfig.h>
10#include <aws/connectcampaigns/model/ProgressiveDialerConfig.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace ConnectCampaigns {
22namespace Model {
23
30 public:
31 AWS_CONNECTCAMPAIGNS_API DialerConfig() = default;
32 AWS_CONNECTCAMPAIGNS_API DialerConfig(Aws::Utils::Json::JsonView jsonValue);
33 AWS_CONNECTCAMPAIGNS_API DialerConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_CONNECTCAMPAIGNS_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
38 inline const ProgressiveDialerConfig& GetProgressiveDialerConfig() const { return m_progressiveDialerConfig; }
39 inline bool ProgressiveDialerConfigHasBeenSet() const { return m_progressiveDialerConfigHasBeenSet; }
40 template <typename ProgressiveDialerConfigT = ProgressiveDialerConfig>
41 void SetProgressiveDialerConfig(ProgressiveDialerConfigT&& value) {
42 m_progressiveDialerConfigHasBeenSet = true;
43 m_progressiveDialerConfig = std::forward<ProgressiveDialerConfigT>(value);
44 }
45 template <typename ProgressiveDialerConfigT = ProgressiveDialerConfig>
46 DialerConfig& WithProgressiveDialerConfig(ProgressiveDialerConfigT&& value) {
47 SetProgressiveDialerConfig(std::forward<ProgressiveDialerConfigT>(value));
48 return *this;
49 }
51
53
54 inline const PredictiveDialerConfig& GetPredictiveDialerConfig() const { return m_predictiveDialerConfig; }
55 inline bool PredictiveDialerConfigHasBeenSet() const { return m_predictiveDialerConfigHasBeenSet; }
56 template <typename PredictiveDialerConfigT = PredictiveDialerConfig>
57 void SetPredictiveDialerConfig(PredictiveDialerConfigT&& value) {
58 m_predictiveDialerConfigHasBeenSet = true;
59 m_predictiveDialerConfig = std::forward<PredictiveDialerConfigT>(value);
60 }
61 template <typename PredictiveDialerConfigT = PredictiveDialerConfig>
62 DialerConfig& WithPredictiveDialerConfig(PredictiveDialerConfigT&& value) {
63 SetPredictiveDialerConfig(std::forward<PredictiveDialerConfigT>(value));
64 return *this;
65 }
67
69
70 inline const AgentlessDialerConfig& GetAgentlessDialerConfig() const { return m_agentlessDialerConfig; }
71 inline bool AgentlessDialerConfigHasBeenSet() const { return m_agentlessDialerConfigHasBeenSet; }
72 template <typename AgentlessDialerConfigT = AgentlessDialerConfig>
73 void SetAgentlessDialerConfig(AgentlessDialerConfigT&& value) {
74 m_agentlessDialerConfigHasBeenSet = true;
75 m_agentlessDialerConfig = std::forward<AgentlessDialerConfigT>(value);
76 }
77 template <typename AgentlessDialerConfigT = AgentlessDialerConfig>
78 DialerConfig& WithAgentlessDialerConfig(AgentlessDialerConfigT&& value) {
79 SetAgentlessDialerConfig(std::forward<AgentlessDialerConfigT>(value));
80 return *this;
81 }
83 private:
84 ProgressiveDialerConfig m_progressiveDialerConfig;
85
86 PredictiveDialerConfig m_predictiveDialerConfig;
87
88 AgentlessDialerConfig m_agentlessDialerConfig;
89 bool m_progressiveDialerConfigHasBeenSet = false;
90 bool m_predictiveDialerConfigHasBeenSet = false;
91 bool m_agentlessDialerConfigHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace ConnectCampaigns
96} // namespace Aws
AWS_CONNECTCAMPAIGNS_API DialerConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
DialerConfig & WithProgressiveDialerConfig(ProgressiveDialerConfigT &&value)
void SetProgressiveDialerConfig(ProgressiveDialerConfigT &&value)
const AgentlessDialerConfig & GetAgentlessDialerConfig() const
DialerConfig & WithPredictiveDialerConfig(PredictiveDialerConfigT &&value)
void SetPredictiveDialerConfig(PredictiveDialerConfigT &&value)
const ProgressiveDialerConfig & GetProgressiveDialerConfig() const
const PredictiveDialerConfig & GetPredictiveDialerConfig() const
AWS_CONNECTCAMPAIGNS_API DialerConfig(Aws::Utils::Json::JsonView jsonValue)
DialerConfig & WithAgentlessDialerConfig(AgentlessDialerConfigT &&value)
AWS_CONNECTCAMPAIGNS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CONNECTCAMPAIGNS_API DialerConfig()=default
void SetAgentlessDialerConfig(AgentlessDialerConfigT &&value)
Aws::Utils::Json::JsonValue JsonValue