AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
VpnTunnelOptionsSpecification.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/ec2/model/VpnTunnelLogOptionsSpecification.h>
12#include <aws/ec2/model/Phase1EncryptionAlgorithmsRequestListValue.h>
13#include <aws/ec2/model/Phase2EncryptionAlgorithmsRequestListValue.h>
14#include <aws/ec2/model/Phase1IntegrityAlgorithmsRequestListValue.h>
15#include <aws/ec2/model/Phase2IntegrityAlgorithmsRequestListValue.h>
16#include <aws/ec2/model/Phase1DHGroupNumbersRequestListValue.h>
17#include <aws/ec2/model/Phase2DHGroupNumbersRequestListValue.h>
18#include <aws/ec2/model/IKEVersionsRequestListValue.h>
19#include <utility>
20
21namespace Aws
22{
23namespace Utils
24{
25namespace Xml
26{
27 class XmlNode;
28} // namespace Xml
29} // namespace Utils
30namespace EC2
31{
32namespace Model
33{
34
41 {
42 public:
43 AWS_EC2_API VpnTunnelOptionsSpecification() = default;
46
47 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
48 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
49
50
52
63 inline const Aws::String& GetTunnelInsideCidr() const { return m_tunnelInsideCidr; }
64 inline bool TunnelInsideCidrHasBeenSet() const { return m_tunnelInsideCidrHasBeenSet; }
65 template<typename TunnelInsideCidrT = Aws::String>
66 void SetTunnelInsideCidr(TunnelInsideCidrT&& value) { m_tunnelInsideCidrHasBeenSet = true; m_tunnelInsideCidr = std::forward<TunnelInsideCidrT>(value); }
67 template<typename TunnelInsideCidrT = Aws::String>
68 VpnTunnelOptionsSpecification& WithTunnelInsideCidr(TunnelInsideCidrT&& value) { SetTunnelInsideCidr(std::forward<TunnelInsideCidrT>(value)); return *this;}
70
72
78 inline const Aws::String& GetTunnelInsideIpv6Cidr() const { return m_tunnelInsideIpv6Cidr; }
79 inline bool TunnelInsideIpv6CidrHasBeenSet() const { return m_tunnelInsideIpv6CidrHasBeenSet; }
80 template<typename TunnelInsideIpv6CidrT = Aws::String>
81 void SetTunnelInsideIpv6Cidr(TunnelInsideIpv6CidrT&& value) { m_tunnelInsideIpv6CidrHasBeenSet = true; m_tunnelInsideIpv6Cidr = std::forward<TunnelInsideIpv6CidrT>(value); }
82 template<typename TunnelInsideIpv6CidrT = Aws::String>
83 VpnTunnelOptionsSpecification& WithTunnelInsideIpv6Cidr(TunnelInsideIpv6CidrT&& value) { SetTunnelInsideIpv6Cidr(std::forward<TunnelInsideIpv6CidrT>(value)); return *this;}
85
87
93 inline const Aws::String& GetPreSharedKey() const { return m_preSharedKey; }
94 inline bool PreSharedKeyHasBeenSet() const { return m_preSharedKeyHasBeenSet; }
95 template<typename PreSharedKeyT = Aws::String>
96 void SetPreSharedKey(PreSharedKeyT&& value) { m_preSharedKeyHasBeenSet = true; m_preSharedKey = std::forward<PreSharedKeyT>(value); }
97 template<typename PreSharedKeyT = Aws::String>
98 VpnTunnelOptionsSpecification& WithPreSharedKey(PreSharedKeyT&& value) { SetPreSharedKey(std::forward<PreSharedKeyT>(value)); return *this;}
100
102
107 inline int GetPhase1LifetimeSeconds() const { return m_phase1LifetimeSeconds; }
108 inline bool Phase1LifetimeSecondsHasBeenSet() const { return m_phase1LifetimeSecondsHasBeenSet; }
109 inline void SetPhase1LifetimeSeconds(int value) { m_phase1LifetimeSecondsHasBeenSet = true; m_phase1LifetimeSeconds = value; }
112
114
120 inline int GetPhase2LifetimeSeconds() const { return m_phase2LifetimeSeconds; }
121 inline bool Phase2LifetimeSecondsHasBeenSet() const { return m_phase2LifetimeSecondsHasBeenSet; }
122 inline void SetPhase2LifetimeSeconds(int value) { m_phase2LifetimeSecondsHasBeenSet = true; m_phase2LifetimeSeconds = value; }
125
127
135 inline int GetRekeyMarginTimeSeconds() const { return m_rekeyMarginTimeSeconds; }
136 inline bool RekeyMarginTimeSecondsHasBeenSet() const { return m_rekeyMarginTimeSecondsHasBeenSet; }
137 inline void SetRekeyMarginTimeSeconds(int value) { m_rekeyMarginTimeSecondsHasBeenSet = true; m_rekeyMarginTimeSeconds = value; }
140
142
148 inline int GetRekeyFuzzPercentage() const { return m_rekeyFuzzPercentage; }
149 inline bool RekeyFuzzPercentageHasBeenSet() const { return m_rekeyFuzzPercentageHasBeenSet; }
150 inline void SetRekeyFuzzPercentage(int value) { m_rekeyFuzzPercentageHasBeenSet = true; m_rekeyFuzzPercentage = value; }
153
155
159 inline int GetReplayWindowSize() const { return m_replayWindowSize; }
160 inline bool ReplayWindowSizeHasBeenSet() const { return m_replayWindowSizeHasBeenSet; }
161 inline void SetReplayWindowSize(int value) { m_replayWindowSizeHasBeenSet = true; m_replayWindowSize = value; }
164
166
170 inline int GetDPDTimeoutSeconds() const { return m_dPDTimeoutSeconds; }
171 inline bool DPDTimeoutSecondsHasBeenSet() const { return m_dPDTimeoutSecondsHasBeenSet; }
172 inline void SetDPDTimeoutSeconds(int value) { m_dPDTimeoutSecondsHasBeenSet = true; m_dPDTimeoutSeconds = value; }
175
177
183 inline const Aws::String& GetDPDTimeoutAction() const { return m_dPDTimeoutAction; }
184 inline bool DPDTimeoutActionHasBeenSet() const { return m_dPDTimeoutActionHasBeenSet; }
185 template<typename DPDTimeoutActionT = Aws::String>
186 void SetDPDTimeoutAction(DPDTimeoutActionT&& value) { m_dPDTimeoutActionHasBeenSet = true; m_dPDTimeoutAction = std::forward<DPDTimeoutActionT>(value); }
187 template<typename DPDTimeoutActionT = Aws::String>
188 VpnTunnelOptionsSpecification& WithDPDTimeoutAction(DPDTimeoutActionT&& value) { SetDPDTimeoutAction(std::forward<DPDTimeoutActionT>(value)); return *this;}
190
192
198 inline const Aws::Vector<Phase1EncryptionAlgorithmsRequestListValue>& GetPhase1EncryptionAlgorithms() const { return m_phase1EncryptionAlgorithms; }
199 inline bool Phase1EncryptionAlgorithmsHasBeenSet() const { return m_phase1EncryptionAlgorithmsHasBeenSet; }
200 template<typename Phase1EncryptionAlgorithmsT = Aws::Vector<Phase1EncryptionAlgorithmsRequestListValue>>
201 void SetPhase1EncryptionAlgorithms(Phase1EncryptionAlgorithmsT&& value) { m_phase1EncryptionAlgorithmsHasBeenSet = true; m_phase1EncryptionAlgorithms = std::forward<Phase1EncryptionAlgorithmsT>(value); }
202 template<typename Phase1EncryptionAlgorithmsT = Aws::Vector<Phase1EncryptionAlgorithmsRequestListValue>>
203 VpnTunnelOptionsSpecification& WithPhase1EncryptionAlgorithms(Phase1EncryptionAlgorithmsT&& value) { SetPhase1EncryptionAlgorithms(std::forward<Phase1EncryptionAlgorithmsT>(value)); return *this;}
204 template<typename Phase1EncryptionAlgorithmsT = Phase1EncryptionAlgorithmsRequestListValue>
205 VpnTunnelOptionsSpecification& AddPhase1EncryptionAlgorithms(Phase1EncryptionAlgorithmsT&& value) { m_phase1EncryptionAlgorithmsHasBeenSet = true; m_phase1EncryptionAlgorithms.emplace_back(std::forward<Phase1EncryptionAlgorithmsT>(value)); return *this; }
207
209
215 inline const Aws::Vector<Phase2EncryptionAlgorithmsRequestListValue>& GetPhase2EncryptionAlgorithms() const { return m_phase2EncryptionAlgorithms; }
216 inline bool Phase2EncryptionAlgorithmsHasBeenSet() const { return m_phase2EncryptionAlgorithmsHasBeenSet; }
217 template<typename Phase2EncryptionAlgorithmsT = Aws::Vector<Phase2EncryptionAlgorithmsRequestListValue>>
218 void SetPhase2EncryptionAlgorithms(Phase2EncryptionAlgorithmsT&& value) { m_phase2EncryptionAlgorithmsHasBeenSet = true; m_phase2EncryptionAlgorithms = std::forward<Phase2EncryptionAlgorithmsT>(value); }
219 template<typename Phase2EncryptionAlgorithmsT = Aws::Vector<Phase2EncryptionAlgorithmsRequestListValue>>
220 VpnTunnelOptionsSpecification& WithPhase2EncryptionAlgorithms(Phase2EncryptionAlgorithmsT&& value) { SetPhase2EncryptionAlgorithms(std::forward<Phase2EncryptionAlgorithmsT>(value)); return *this;}
221 template<typename Phase2EncryptionAlgorithmsT = Phase2EncryptionAlgorithmsRequestListValue>
222 VpnTunnelOptionsSpecification& AddPhase2EncryptionAlgorithms(Phase2EncryptionAlgorithmsT&& value) { m_phase2EncryptionAlgorithmsHasBeenSet = true; m_phase2EncryptionAlgorithms.emplace_back(std::forward<Phase2EncryptionAlgorithmsT>(value)); return *this; }
224
226
231 inline const Aws::Vector<Phase1IntegrityAlgorithmsRequestListValue>& GetPhase1IntegrityAlgorithms() const { return m_phase1IntegrityAlgorithms; }
232 inline bool Phase1IntegrityAlgorithmsHasBeenSet() const { return m_phase1IntegrityAlgorithmsHasBeenSet; }
233 template<typename Phase1IntegrityAlgorithmsT = Aws::Vector<Phase1IntegrityAlgorithmsRequestListValue>>
234 void SetPhase1IntegrityAlgorithms(Phase1IntegrityAlgorithmsT&& value) { m_phase1IntegrityAlgorithmsHasBeenSet = true; m_phase1IntegrityAlgorithms = std::forward<Phase1IntegrityAlgorithmsT>(value); }
235 template<typename Phase1IntegrityAlgorithmsT = Aws::Vector<Phase1IntegrityAlgorithmsRequestListValue>>
236 VpnTunnelOptionsSpecification& WithPhase1IntegrityAlgorithms(Phase1IntegrityAlgorithmsT&& value) { SetPhase1IntegrityAlgorithms(std::forward<Phase1IntegrityAlgorithmsT>(value)); return *this;}
237 template<typename Phase1IntegrityAlgorithmsT = Phase1IntegrityAlgorithmsRequestListValue>
238 VpnTunnelOptionsSpecification& AddPhase1IntegrityAlgorithms(Phase1IntegrityAlgorithmsT&& value) { m_phase1IntegrityAlgorithmsHasBeenSet = true; m_phase1IntegrityAlgorithms.emplace_back(std::forward<Phase1IntegrityAlgorithmsT>(value)); return *this; }
240
242
247 inline const Aws::Vector<Phase2IntegrityAlgorithmsRequestListValue>& GetPhase2IntegrityAlgorithms() const { return m_phase2IntegrityAlgorithms; }
248 inline bool Phase2IntegrityAlgorithmsHasBeenSet() const { return m_phase2IntegrityAlgorithmsHasBeenSet; }
249 template<typename Phase2IntegrityAlgorithmsT = Aws::Vector<Phase2IntegrityAlgorithmsRequestListValue>>
250 void SetPhase2IntegrityAlgorithms(Phase2IntegrityAlgorithmsT&& value) { m_phase2IntegrityAlgorithmsHasBeenSet = true; m_phase2IntegrityAlgorithms = std::forward<Phase2IntegrityAlgorithmsT>(value); }
251 template<typename Phase2IntegrityAlgorithmsT = Aws::Vector<Phase2IntegrityAlgorithmsRequestListValue>>
252 VpnTunnelOptionsSpecification& WithPhase2IntegrityAlgorithms(Phase2IntegrityAlgorithmsT&& value) { SetPhase2IntegrityAlgorithms(std::forward<Phase2IntegrityAlgorithmsT>(value)); return *this;}
253 template<typename Phase2IntegrityAlgorithmsT = Phase2IntegrityAlgorithmsRequestListValue>
254 VpnTunnelOptionsSpecification& AddPhase2IntegrityAlgorithms(Phase2IntegrityAlgorithmsT&& value) { m_phase2IntegrityAlgorithmsHasBeenSet = true; m_phase2IntegrityAlgorithms.emplace_back(std::forward<Phase2IntegrityAlgorithmsT>(value)); return *this; }
256
258
265 inline const Aws::Vector<Phase1DHGroupNumbersRequestListValue>& GetPhase1DHGroupNumbers() const { return m_phase1DHGroupNumbers; }
266 inline bool Phase1DHGroupNumbersHasBeenSet() const { return m_phase1DHGroupNumbersHasBeenSet; }
267 template<typename Phase1DHGroupNumbersT = Aws::Vector<Phase1DHGroupNumbersRequestListValue>>
268 void SetPhase1DHGroupNumbers(Phase1DHGroupNumbersT&& value) { m_phase1DHGroupNumbersHasBeenSet = true; m_phase1DHGroupNumbers = std::forward<Phase1DHGroupNumbersT>(value); }
269 template<typename Phase1DHGroupNumbersT = Aws::Vector<Phase1DHGroupNumbersRequestListValue>>
270 VpnTunnelOptionsSpecification& WithPhase1DHGroupNumbers(Phase1DHGroupNumbersT&& value) { SetPhase1DHGroupNumbers(std::forward<Phase1DHGroupNumbersT>(value)); return *this;}
271 template<typename Phase1DHGroupNumbersT = Phase1DHGroupNumbersRequestListValue>
272 VpnTunnelOptionsSpecification& AddPhase1DHGroupNumbers(Phase1DHGroupNumbersT&& value) { m_phase1DHGroupNumbersHasBeenSet = true; m_phase1DHGroupNumbers.emplace_back(std::forward<Phase1DHGroupNumbersT>(value)); return *this; }
274
276
283 inline const Aws::Vector<Phase2DHGroupNumbersRequestListValue>& GetPhase2DHGroupNumbers() const { return m_phase2DHGroupNumbers; }
284 inline bool Phase2DHGroupNumbersHasBeenSet() const { return m_phase2DHGroupNumbersHasBeenSet; }
285 template<typename Phase2DHGroupNumbersT = Aws::Vector<Phase2DHGroupNumbersRequestListValue>>
286 void SetPhase2DHGroupNumbers(Phase2DHGroupNumbersT&& value) { m_phase2DHGroupNumbersHasBeenSet = true; m_phase2DHGroupNumbers = std::forward<Phase2DHGroupNumbersT>(value); }
287 template<typename Phase2DHGroupNumbersT = Aws::Vector<Phase2DHGroupNumbersRequestListValue>>
288 VpnTunnelOptionsSpecification& WithPhase2DHGroupNumbers(Phase2DHGroupNumbersT&& value) { SetPhase2DHGroupNumbers(std::forward<Phase2DHGroupNumbersT>(value)); return *this;}
289 template<typename Phase2DHGroupNumbersT = Phase2DHGroupNumbersRequestListValue>
290 VpnTunnelOptionsSpecification& AddPhase2DHGroupNumbers(Phase2DHGroupNumbersT&& value) { m_phase2DHGroupNumbersHasBeenSet = true; m_phase2DHGroupNumbers.emplace_back(std::forward<Phase2DHGroupNumbersT>(value)); return *this; }
292
294
298 inline const Aws::Vector<IKEVersionsRequestListValue>& GetIKEVersions() const { return m_iKEVersions; }
299 inline bool IKEVersionsHasBeenSet() const { return m_iKEVersionsHasBeenSet; }
300 template<typename IKEVersionsT = Aws::Vector<IKEVersionsRequestListValue>>
301 void SetIKEVersions(IKEVersionsT&& value) { m_iKEVersionsHasBeenSet = true; m_iKEVersions = std::forward<IKEVersionsT>(value); }
302 template<typename IKEVersionsT = Aws::Vector<IKEVersionsRequestListValue>>
303 VpnTunnelOptionsSpecification& WithIKEVersions(IKEVersionsT&& value) { SetIKEVersions(std::forward<IKEVersionsT>(value)); return *this;}
304 template<typename IKEVersionsT = IKEVersionsRequestListValue>
305 VpnTunnelOptionsSpecification& AddIKEVersions(IKEVersionsT&& value) { m_iKEVersionsHasBeenSet = true; m_iKEVersions.emplace_back(std::forward<IKEVersionsT>(value)); return *this; }
307
309
316 inline const Aws::String& GetStartupAction() const { return m_startupAction; }
317 inline bool StartupActionHasBeenSet() const { return m_startupActionHasBeenSet; }
318 template<typename StartupActionT = Aws::String>
319 void SetStartupAction(StartupActionT&& value) { m_startupActionHasBeenSet = true; m_startupAction = std::forward<StartupActionT>(value); }
320 template<typename StartupActionT = Aws::String>
321 VpnTunnelOptionsSpecification& WithStartupAction(StartupActionT&& value) { SetStartupAction(std::forward<StartupActionT>(value)); return *this;}
323
325
328 inline const VpnTunnelLogOptionsSpecification& GetLogOptions() const { return m_logOptions; }
329 inline bool LogOptionsHasBeenSet() const { return m_logOptionsHasBeenSet; }
330 template<typename LogOptionsT = VpnTunnelLogOptionsSpecification>
331 void SetLogOptions(LogOptionsT&& value) { m_logOptionsHasBeenSet = true; m_logOptions = std::forward<LogOptionsT>(value); }
332 template<typename LogOptionsT = VpnTunnelLogOptionsSpecification>
333 VpnTunnelOptionsSpecification& WithLogOptions(LogOptionsT&& value) { SetLogOptions(std::forward<LogOptionsT>(value)); return *this;}
335
337
340 inline bool GetEnableTunnelLifecycleControl() const { return m_enableTunnelLifecycleControl; }
341 inline bool EnableTunnelLifecycleControlHasBeenSet() const { return m_enableTunnelLifecycleControlHasBeenSet; }
342 inline void SetEnableTunnelLifecycleControl(bool value) { m_enableTunnelLifecycleControlHasBeenSet = true; m_enableTunnelLifecycleControl = value; }
345 private:
346
347 Aws::String m_tunnelInsideCidr;
348 bool m_tunnelInsideCidrHasBeenSet = false;
349
350 Aws::String m_tunnelInsideIpv6Cidr;
351 bool m_tunnelInsideIpv6CidrHasBeenSet = false;
352
353 Aws::String m_preSharedKey;
354 bool m_preSharedKeyHasBeenSet = false;
355
356 int m_phase1LifetimeSeconds{0};
357 bool m_phase1LifetimeSecondsHasBeenSet = false;
358
359 int m_phase2LifetimeSeconds{0};
360 bool m_phase2LifetimeSecondsHasBeenSet = false;
361
362 int m_rekeyMarginTimeSeconds{0};
363 bool m_rekeyMarginTimeSecondsHasBeenSet = false;
364
365 int m_rekeyFuzzPercentage{0};
366 bool m_rekeyFuzzPercentageHasBeenSet = false;
367
368 int m_replayWindowSize{0};
369 bool m_replayWindowSizeHasBeenSet = false;
370
371 int m_dPDTimeoutSeconds{0};
372 bool m_dPDTimeoutSecondsHasBeenSet = false;
373
374 Aws::String m_dPDTimeoutAction;
375 bool m_dPDTimeoutActionHasBeenSet = false;
376
378 bool m_phase1EncryptionAlgorithmsHasBeenSet = false;
379
381 bool m_phase2EncryptionAlgorithmsHasBeenSet = false;
382
384 bool m_phase1IntegrityAlgorithmsHasBeenSet = false;
385
387 bool m_phase2IntegrityAlgorithmsHasBeenSet = false;
388
390 bool m_phase1DHGroupNumbersHasBeenSet = false;
391
393 bool m_phase2DHGroupNumbersHasBeenSet = false;
394
396 bool m_iKEVersionsHasBeenSet = false;
397
398 Aws::String m_startupAction;
399 bool m_startupActionHasBeenSet = false;
400
401 VpnTunnelLogOptionsSpecification m_logOptions;
402 bool m_logOptionsHasBeenSet = false;
403
404 bool m_enableTunnelLifecycleControl{false};
405 bool m_enableTunnelLifecycleControlHasBeenSet = false;
406 };
407
408} // namespace Model
409} // namespace EC2
410} // namespace Aws
VpnTunnelOptionsSpecification & AddPhase2IntegrityAlgorithms(Phase2IntegrityAlgorithmsT &&value)
void SetPhase2EncryptionAlgorithms(Phase2EncryptionAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithPreSharedKey(PreSharedKeyT &&value)
VpnTunnelOptionsSpecification & AddIKEVersions(IKEVersionsT &&value)
VpnTunnelOptionsSpecification & WithLogOptions(LogOptionsT &&value)
const VpnTunnelLogOptionsSpecification & GetLogOptions() const
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
VpnTunnelOptionsSpecification & WithIKEVersions(IKEVersionsT &&value)
VpnTunnelOptionsSpecification & WithPhase1DHGroupNumbers(Phase1DHGroupNumbersT &&value)
const Aws::Vector< Phase2DHGroupNumbersRequestListValue > & GetPhase2DHGroupNumbers() const
VpnTunnelOptionsSpecification & WithPhase1EncryptionAlgorithms(Phase1EncryptionAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithRekeyFuzzPercentage(int value)
VpnTunnelOptionsSpecification & WithPhase2DHGroupNumbers(Phase2DHGroupNumbersT &&value)
VpnTunnelOptionsSpecification & AddPhase1DHGroupNumbers(Phase1DHGroupNumbersT &&value)
void SetPhase1EncryptionAlgorithms(Phase1EncryptionAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithPhase2IntegrityAlgorithms(Phase2IntegrityAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithPhase1LifetimeSeconds(int value)
AWS_EC2_API VpnTunnelOptionsSpecification & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetPhase2IntegrityAlgorithms(Phase2IntegrityAlgorithmsT &&value)
const Aws::Vector< Phase1IntegrityAlgorithmsRequestListValue > & GetPhase1IntegrityAlgorithms() const
VpnTunnelOptionsSpecification & WithRekeyMarginTimeSeconds(int value)
VpnTunnelOptionsSpecification & AddPhase1IntegrityAlgorithms(Phase1IntegrityAlgorithmsT &&value)
const Aws::Vector< Phase2EncryptionAlgorithmsRequestListValue > & GetPhase2EncryptionAlgorithms() const
VpnTunnelOptionsSpecification & WithDPDTimeoutSeconds(int value)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
VpnTunnelOptionsSpecification & WithDPDTimeoutAction(DPDTimeoutActionT &&value)
AWS_EC2_API VpnTunnelOptionsSpecification(const Aws::Utils::Xml::XmlNode &xmlNode)
VpnTunnelOptionsSpecification & WithPhase2LifetimeSeconds(int value)
const Aws::Vector< IKEVersionsRequestListValue > & GetIKEVersions() const
VpnTunnelOptionsSpecification & WithStartupAction(StartupActionT &&value)
VpnTunnelOptionsSpecification & WithPhase2EncryptionAlgorithms(Phase2EncryptionAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithPhase1IntegrityAlgorithms(Phase1IntegrityAlgorithmsT &&value)
const Aws::Vector< Phase1DHGroupNumbersRequestListValue > & GetPhase1DHGroupNumbers() const
void SetPhase1IntegrityAlgorithms(Phase1IntegrityAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithTunnelInsideIpv6Cidr(TunnelInsideIpv6CidrT &&value)
VpnTunnelOptionsSpecification & WithReplayWindowSize(int value)
const Aws::Vector< Phase2IntegrityAlgorithmsRequestListValue > & GetPhase2IntegrityAlgorithms() const
VpnTunnelOptionsSpecification & AddPhase2DHGroupNumbers(Phase2DHGroupNumbersT &&value)
VpnTunnelOptionsSpecification & AddPhase1EncryptionAlgorithms(Phase1EncryptionAlgorithmsT &&value)
const Aws::Vector< Phase1EncryptionAlgorithmsRequestListValue > & GetPhase1EncryptionAlgorithms() const
VpnTunnelOptionsSpecification & WithTunnelInsideCidr(TunnelInsideCidrT &&value)
VpnTunnelOptionsSpecification & AddPhase2EncryptionAlgorithms(Phase2EncryptionAlgorithmsT &&value)
VpnTunnelOptionsSpecification & WithEnableTunnelLifecycleControl(bool value)
void SetTunnelInsideIpv6Cidr(TunnelInsideIpv6CidrT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
std::basic_ostream< char, std::char_traits< char > > OStream