AWS SDK for C++

AWS SDK for C++ Version 1.11.744

Loading...
Searching...
No Matches
QueueQuickConnectConfig.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Connect {
20namespace Model {
21
29 public:
30 AWS_CONNECT_API QueueQuickConnectConfig() = default;
33 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetQueueId() const { return m_queueId; }
40 inline bool QueueIdHasBeenSet() const { return m_queueIdHasBeenSet; }
41 template <typename QueueIdT = Aws::String>
42 void SetQueueId(QueueIdT&& value) {
43 m_queueIdHasBeenSet = true;
44 m_queueId = std::forward<QueueIdT>(value);
45 }
46 template <typename QueueIdT = Aws::String>
48 SetQueueId(std::forward<QueueIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetContactFlowId() const { return m_contactFlowId; }
58 inline bool ContactFlowIdHasBeenSet() const { return m_contactFlowIdHasBeenSet; }
59 template <typename ContactFlowIdT = Aws::String>
60 void SetContactFlowId(ContactFlowIdT&& value) {
61 m_contactFlowIdHasBeenSet = true;
62 m_contactFlowId = std::forward<ContactFlowIdT>(value);
63 }
64 template <typename ContactFlowIdT = Aws::String>
65 QueueQuickConnectConfig& WithContactFlowId(ContactFlowIdT&& value) {
66 SetContactFlowId(std::forward<ContactFlowIdT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_queueId;
72
73 Aws::String m_contactFlowId;
74 bool m_queueIdHasBeenSet = false;
75 bool m_contactFlowIdHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace Connect
80} // namespace Aws
QueueQuickConnectConfig & WithQueueId(QueueIdT &&value)
AWS_CONNECT_API QueueQuickConnectConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
QueueQuickConnectConfig & WithContactFlowId(ContactFlowIdT &&value)
AWS_CONNECT_API QueueQuickConnectConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API QueueQuickConnectConfig()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue