AWS SDK for C++

AWS SDK for C++ Version 1.11.744

Loading...
Searching...
No Matches
UpdateActionConnectorRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/quicksight/QuickSight_EXPORTS.h>
10#include <aws/quicksight/model/AuthConfig.h>
11
12#include <utility>
13
14namespace Aws {
15namespace QuickSight {
16namespace Model {
17
21 public:
22 AWS_QUICKSIGHT_API UpdateActionConnectorRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "UpdateActionConnector"; }
29
30 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
31
33
37 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
38 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
39 template <typename AwsAccountIdT = Aws::String>
40 void SetAwsAccountId(AwsAccountIdT&& value) {
41 m_awsAccountIdHasBeenSet = true;
42 m_awsAccountId = std::forward<AwsAccountIdT>(value);
43 }
44 template <typename AwsAccountIdT = Aws::String>
46 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetActionConnectorId() const { return m_actionConnectorId; }
56 inline bool ActionConnectorIdHasBeenSet() const { return m_actionConnectorIdHasBeenSet; }
57 template <typename ActionConnectorIdT = Aws::String>
58 void SetActionConnectorId(ActionConnectorIdT&& value) {
59 m_actionConnectorIdHasBeenSet = true;
60 m_actionConnectorId = std::forward<ActionConnectorIdT>(value);
61 }
62 template <typename ActionConnectorIdT = Aws::String>
64 SetActionConnectorId(std::forward<ActionConnectorIdT>(value));
65 return *this;
66 }
68
70
73 inline const Aws::String& GetName() const { return m_name; }
74 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
75 template <typename NameT = Aws::String>
76 void SetName(NameT&& value) {
77 m_nameHasBeenSet = true;
78 m_name = std::forward<NameT>(value);
79 }
80 template <typename NameT = Aws::String>
82 SetName(std::forward<NameT>(value));
83 return *this;
84 }
86
88
92 inline const AuthConfig& GetAuthenticationConfig() const { return m_authenticationConfig; }
93 inline bool AuthenticationConfigHasBeenSet() const { return m_authenticationConfigHasBeenSet; }
94 template <typename AuthenticationConfigT = AuthConfig>
95 void SetAuthenticationConfig(AuthenticationConfigT&& value) {
96 m_authenticationConfigHasBeenSet = true;
97 m_authenticationConfig = std::forward<AuthenticationConfigT>(value);
98 }
99 template <typename AuthenticationConfigT = AuthConfig>
101 SetAuthenticationConfig(std::forward<AuthenticationConfigT>(value));
102 return *this;
103 }
105
107
110 inline const Aws::String& GetDescription() const { return m_description; }
111 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
112 template <typename DescriptionT = Aws::String>
113 void SetDescription(DescriptionT&& value) {
114 m_descriptionHasBeenSet = true;
115 m_description = std::forward<DescriptionT>(value);
116 }
117 template <typename DescriptionT = Aws::String>
119 SetDescription(std::forward<DescriptionT>(value));
120 return *this;
121 }
123
125
128 inline const Aws::String& GetVpcConnectionArn() const { return m_vpcConnectionArn; }
129 inline bool VpcConnectionArnHasBeenSet() const { return m_vpcConnectionArnHasBeenSet; }
130 template <typename VpcConnectionArnT = Aws::String>
131 void SetVpcConnectionArn(VpcConnectionArnT&& value) {
132 m_vpcConnectionArnHasBeenSet = true;
133 m_vpcConnectionArn = std::forward<VpcConnectionArnT>(value);
134 }
135 template <typename VpcConnectionArnT = Aws::String>
137 SetVpcConnectionArn(std::forward<VpcConnectionArnT>(value));
138 return *this;
139 }
141 private:
142 Aws::String m_awsAccountId;
143
144 Aws::String m_actionConnectorId;
145
146 Aws::String m_name;
147
148 AuthConfig m_authenticationConfig;
149
150 Aws::String m_description;
151
152 Aws::String m_vpcConnectionArn;
153 bool m_awsAccountIdHasBeenSet = false;
154 bool m_actionConnectorIdHasBeenSet = false;
155 bool m_nameHasBeenSet = false;
156 bool m_authenticationConfigHasBeenSet = false;
157 bool m_descriptionHasBeenSet = false;
158 bool m_vpcConnectionArnHasBeenSet = false;
159};
160
161} // namespace Model
162} // namespace QuickSight
163} // namespace Aws
UpdateActionConnectorRequest & WithAuthenticationConfig(AuthenticationConfigT &&value)
AWS_QUICKSIGHT_API UpdateActionConnectorRequest()=default
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
UpdateActionConnectorRequest & WithVpcConnectionArn(VpcConnectionArnT &&value)
UpdateActionConnectorRequest & WithName(NameT &&value)
UpdateActionConnectorRequest & WithAwsAccountId(AwsAccountIdT &&value)
UpdateActionConnectorRequest & WithActionConnectorId(ActionConnectorIdT &&value)
UpdateActionConnectorRequest & WithDescription(DescriptionT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String