AWS SDK for C++

AWS SDK for C++ Version 1.11.796

Loading...
Searching...
No Matches
UpdateEnvironmentConnectorRequest.h
1
6#pragma once
7#include <aws/core/utils/UUID.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/evs/EVSRequest.h>
10#include <aws/evs/EVS_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace EVS {
16namespace Model {
17
21 public:
22 AWS_EVS_API UpdateEnvironmentConnectorRequest() = 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 "UpdateEnvironmentConnector"; }
29
30 AWS_EVS_API Aws::String SerializePayload() const override;
31
33
35
42 inline const Aws::String& GetClientToken() const { return m_clientToken; }
43 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
44 template <typename ClientTokenT = Aws::String>
45 void SetClientToken(ClientTokenT&& value) {
46 m_clientTokenHasBeenSet = true;
47 m_clientToken = std::forward<ClientTokenT>(value);
48 }
49 template <typename ClientTokenT = Aws::String>
51 SetClientToken(std::forward<ClientTokenT>(value));
52 return *this;
53 }
55
57
60 inline const Aws::String& GetEnvironmentId() const { return m_environmentId; }
61 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
62 template <typename EnvironmentIdT = Aws::String>
63 void SetEnvironmentId(EnvironmentIdT&& value) {
64 m_environmentIdHasBeenSet = true;
65 m_environmentId = std::forward<EnvironmentIdT>(value);
66 }
67 template <typename EnvironmentIdT = Aws::String>
69 SetEnvironmentId(std::forward<EnvironmentIdT>(value));
70 return *this;
71 }
73
75
78 inline const Aws::String& GetConnectorId() const { return m_connectorId; }
79 inline bool ConnectorIdHasBeenSet() const { return m_connectorIdHasBeenSet; }
80 template <typename ConnectorIdT = Aws::String>
81 void SetConnectorId(ConnectorIdT&& value) {
82 m_connectorIdHasBeenSet = true;
83 m_connectorId = std::forward<ConnectorIdT>(value);
84 }
85 template <typename ConnectorIdT = Aws::String>
87 SetConnectorId(std::forward<ConnectorIdT>(value));
88 return *this;
89 }
91
93
97 inline const Aws::String& GetApplianceFqdn() const { return m_applianceFqdn; }
98 inline bool ApplianceFqdnHasBeenSet() const { return m_applianceFqdnHasBeenSet; }
99 template <typename ApplianceFqdnT = Aws::String>
100 void SetApplianceFqdn(ApplianceFqdnT&& value) {
101 m_applianceFqdnHasBeenSet = true;
102 m_applianceFqdn = std::forward<ApplianceFqdnT>(value);
103 }
104 template <typename ApplianceFqdnT = Aws::String>
106 SetApplianceFqdn(std::forward<ApplianceFqdnT>(value));
107 return *this;
108 }
110
112
116 inline const Aws::String& GetSecretIdentifier() const { return m_secretIdentifier; }
117 inline bool SecretIdentifierHasBeenSet() const { return m_secretIdentifierHasBeenSet; }
118 template <typename SecretIdentifierT = Aws::String>
119 void SetSecretIdentifier(SecretIdentifierT&& value) {
120 m_secretIdentifierHasBeenSet = true;
121 m_secretIdentifier = std::forward<SecretIdentifierT>(value);
122 }
123 template <typename SecretIdentifierT = Aws::String>
125 SetSecretIdentifier(std::forward<SecretIdentifierT>(value));
126 return *this;
127 }
129 private:
131
132 Aws::String m_environmentId;
133
134 Aws::String m_connectorId;
135
136 Aws::String m_applianceFqdn;
137
138 Aws::String m_secretIdentifier;
139 bool m_clientTokenHasBeenSet = true;
140 bool m_environmentIdHasBeenSet = false;
141 bool m_connectorIdHasBeenSet = false;
142 bool m_applianceFqdnHasBeenSet = false;
143 bool m_secretIdentifierHasBeenSet = false;
144};
145
146} // namespace Model
147} // namespace EVS
148} // namespace Aws
AWS_EVS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateEnvironmentConnectorRequest & WithEnvironmentId(EnvironmentIdT &&value)
UpdateEnvironmentConnectorRequest & WithConnectorId(ConnectorIdT &&value)
UpdateEnvironmentConnectorRequest & WithClientToken(ClientTokenT &&value)
UpdateEnvironmentConnectorRequest & WithSecretIdentifier(SecretIdentifierT &&value)
AWS_EVS_API Aws::String SerializePayload() const override
UpdateEnvironmentConnectorRequest & WithApplianceFqdn(ApplianceFqdnT &&value)
static Aws::Utils::UUID PseudoRandomUUID()
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String