AWS SDK for C++

AWS SDK for C++ Version 1.11.555

All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
Loading...
Searching...
No Matches
UpdateQuickConnectConfigRequest.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/ConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/connect/model/QuickConnectConfig.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Connect
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONNECT_API UpdateQuickConnectConfigRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateQuickConnectConfig"; }
32
33 AWS_CONNECT_API Aws::String SerializePayload() const override;
34
35
37
42 inline const Aws::String& GetInstanceId() const { return m_instanceId; }
43 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
44 template<typename InstanceIdT = Aws::String>
45 void SetInstanceId(InstanceIdT&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::forward<InstanceIdT>(value); }
46 template<typename InstanceIdT = Aws::String>
47 UpdateQuickConnectConfigRequest& WithInstanceId(InstanceIdT&& value) { SetInstanceId(std::forward<InstanceIdT>(value)); return *this;}
49
51
54 inline const Aws::String& GetQuickConnectId() const { return m_quickConnectId; }
55 inline bool QuickConnectIdHasBeenSet() const { return m_quickConnectIdHasBeenSet; }
56 template<typename QuickConnectIdT = Aws::String>
57 void SetQuickConnectId(QuickConnectIdT&& value) { m_quickConnectIdHasBeenSet = true; m_quickConnectId = std::forward<QuickConnectIdT>(value); }
58 template<typename QuickConnectIdT = Aws::String>
59 UpdateQuickConnectConfigRequest& WithQuickConnectId(QuickConnectIdT&& value) { SetQuickConnectId(std::forward<QuickConnectIdT>(value)); return *this;}
61
63
66 inline const QuickConnectConfig& GetQuickConnectConfig() const { return m_quickConnectConfig; }
67 inline bool QuickConnectConfigHasBeenSet() const { return m_quickConnectConfigHasBeenSet; }
68 template<typename QuickConnectConfigT = QuickConnectConfig>
69 void SetQuickConnectConfig(QuickConnectConfigT&& value) { m_quickConnectConfigHasBeenSet = true; m_quickConnectConfig = std::forward<QuickConnectConfigT>(value); }
70 template<typename QuickConnectConfigT = QuickConnectConfig>
71 UpdateQuickConnectConfigRequest& WithQuickConnectConfig(QuickConnectConfigT&& value) { SetQuickConnectConfig(std::forward<QuickConnectConfigT>(value)); return *this;}
73 private:
74
75 Aws::String m_instanceId;
76 bool m_instanceIdHasBeenSet = false;
77
78 Aws::String m_quickConnectId;
79 bool m_quickConnectIdHasBeenSet = false;
80
81 QuickConnectConfig m_quickConnectConfig;
82 bool m_quickConnectConfigHasBeenSet = false;
83 };
84
85} // namespace Model
86} // namespace Connect
87} // namespace Aws
UpdateQuickConnectConfigRequest & WithQuickConnectId(QuickConnectIdT &&value)
UpdateQuickConnectConfigRequest & WithInstanceId(InstanceIdT &&value)
UpdateQuickConnectConfigRequest & WithQuickConnectConfig(QuickConnectConfigT &&value)
AWS_CONNECT_API UpdateQuickConnectConfigRequest()=default
AWS_CONNECT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String