AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GatingRuleUpdate.h
1
6#pragma once
7#include <aws/route53-recovery-control-config/Route53RecoveryControlConfig_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Route53RecoveryControlConfig
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_ROUTE53RECOVERYCONTROLCONFIG_API GatingRuleUpdate();
37 AWS_ROUTE53RECOVERYCONTROLCONFIG_API GatingRuleUpdate(Aws::Utils::Json::JsonView jsonValue);
38 AWS_ROUTE53RECOVERYCONTROLCONFIG_API GatingRuleUpdate& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_ROUTE53RECOVERYCONTROLCONFIG_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetName() const{ return m_name; }
48 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
49 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
50 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
51 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
52 inline GatingRuleUpdate& WithName(const Aws::String& value) { SetName(value); return *this;}
53 inline GatingRuleUpdate& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
54 inline GatingRuleUpdate& WithName(const char* value) { SetName(value); return *this;}
56
58
61 inline const Aws::String& GetSafetyRuleArn() const{ return m_safetyRuleArn; }
62 inline bool SafetyRuleArnHasBeenSet() const { return m_safetyRuleArnHasBeenSet; }
63 inline void SetSafetyRuleArn(const Aws::String& value) { m_safetyRuleArnHasBeenSet = true; m_safetyRuleArn = value; }
64 inline void SetSafetyRuleArn(Aws::String&& value) { m_safetyRuleArnHasBeenSet = true; m_safetyRuleArn = std::move(value); }
65 inline void SetSafetyRuleArn(const char* value) { m_safetyRuleArnHasBeenSet = true; m_safetyRuleArn.assign(value); }
66 inline GatingRuleUpdate& WithSafetyRuleArn(const Aws::String& value) { SetSafetyRuleArn(value); return *this;}
67 inline GatingRuleUpdate& WithSafetyRuleArn(Aws::String&& value) { SetSafetyRuleArn(std::move(value)); return *this;}
68 inline GatingRuleUpdate& WithSafetyRuleArn(const char* value) { SetSafetyRuleArn(value); return *this;}
70
72
77 inline int GetWaitPeriodMs() const{ return m_waitPeriodMs; }
78 inline bool WaitPeriodMsHasBeenSet() const { return m_waitPeriodMsHasBeenSet; }
79 inline void SetWaitPeriodMs(int value) { m_waitPeriodMsHasBeenSet = true; m_waitPeriodMs = value; }
80 inline GatingRuleUpdate& WithWaitPeriodMs(int value) { SetWaitPeriodMs(value); return *this;}
82 private:
83
84 Aws::String m_name;
85 bool m_nameHasBeenSet = false;
86
87 Aws::String m_safetyRuleArn;
88 bool m_safetyRuleArnHasBeenSet = false;
89
90 int m_waitPeriodMs;
91 bool m_waitPeriodMsHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace Route53RecoveryControlConfig
96} // namespace Aws
AWS_ROUTE53RECOVERYCONTROLCONFIG_API Aws::Utils::Json::JsonValue Jsonize() const
GatingRuleUpdate & WithName(const Aws::String &value)
AWS_ROUTE53RECOVERYCONTROLCONFIG_API GatingRuleUpdate()
AWS_ROUTE53RECOVERYCONTROLCONFIG_API GatingRuleUpdate & operator=(Aws::Utils::Json::JsonView jsonValue)
GatingRuleUpdate & WithSafetyRuleArn(Aws::String &&value)
GatingRuleUpdate & WithSafetyRuleArn(const Aws::String &value)
AWS_ROUTE53RECOVERYCONTROLCONFIG_API GatingRuleUpdate(Aws::Utils::Json::JsonView jsonValue)
GatingRuleUpdate & WithSafetyRuleArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue