AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
StartTimerDecisionAttributes.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/swf/SWF_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SWF {
20namespace Model {
21
42 public:
43 AWS_SWF_API StartTimerDecisionAttributes() = default;
47
49
56 inline const Aws::String& GetTimerId() const { return m_timerId; }
57 inline bool TimerIdHasBeenSet() const { return m_timerIdHasBeenSet; }
58 template <typename TimerIdT = Aws::String>
59 void SetTimerId(TimerIdT&& value) {
60 m_timerIdHasBeenSet = true;
61 m_timerId = std::forward<TimerIdT>(value);
62 }
63 template <typename TimerIdT = Aws::String>
65 SetTimerId(std::forward<TimerIdT>(value));
66 return *this;
67 }
69
71
75 inline const Aws::String& GetControl() const { return m_control; }
76 inline bool ControlHasBeenSet() const { return m_controlHasBeenSet; }
77 template <typename ControlT = Aws::String>
78 void SetControl(ControlT&& value) {
79 m_controlHasBeenSet = true;
80 m_control = std::forward<ControlT>(value);
81 }
82 template <typename ControlT = Aws::String>
84 SetControl(std::forward<ControlT>(value));
85 return *this;
86 }
88
90
94 inline const Aws::String& GetStartToFireTimeout() const { return m_startToFireTimeout; }
95 inline bool StartToFireTimeoutHasBeenSet() const { return m_startToFireTimeoutHasBeenSet; }
96 template <typename StartToFireTimeoutT = Aws::String>
97 void SetStartToFireTimeout(StartToFireTimeoutT&& value) {
98 m_startToFireTimeoutHasBeenSet = true;
99 m_startToFireTimeout = std::forward<StartToFireTimeoutT>(value);
100 }
101 template <typename StartToFireTimeoutT = Aws::String>
103 SetStartToFireTimeout(std::forward<StartToFireTimeoutT>(value));
104 return *this;
105 }
107 private:
108 Aws::String m_timerId;
109
110 Aws::String m_control;
111
112 Aws::String m_startToFireTimeout;
113 bool m_timerIdHasBeenSet = false;
114 bool m_controlHasBeenSet = false;
115 bool m_startToFireTimeoutHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace SWF
120} // namespace Aws
AWS_SWF_API StartTimerDecisionAttributes & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SWF_API StartTimerDecisionAttributes(Aws::Utils::Json::JsonView jsonValue)
AWS_SWF_API StartTimerDecisionAttributes()=default
AWS_SWF_API Aws::Utils::Json::JsonValue Jsonize() const
StartTimerDecisionAttributes & WithTimerId(TimerIdT &&value)
StartTimerDecisionAttributes & WithStartToFireTimeout(StartToFireTimeoutT &&value)
StartTimerDecisionAttributes & WithControl(ControlT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue