AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LambdaFunctionScheduledEventAttributes.h
1
6#pragma once
7#include <aws/swf/SWF_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 SWF
22{
23namespace Model
24{
25
33 {
34 public:
39
40
42
45 inline const Aws::String& GetId() const{ return m_id; }
46 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
47 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
48 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
49 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
50 inline LambdaFunctionScheduledEventAttributes& WithId(const Aws::String& value) { SetId(value); return *this;}
51 inline LambdaFunctionScheduledEventAttributes& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
52 inline LambdaFunctionScheduledEventAttributes& WithId(const char* value) { SetId(value); return *this;}
54
56
59 inline const Aws::String& GetName() const{ return m_name; }
60 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
61 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
62 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
63 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
64 inline LambdaFunctionScheduledEventAttributes& WithName(const Aws::String& value) { SetName(value); return *this;}
65 inline LambdaFunctionScheduledEventAttributes& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
66 inline LambdaFunctionScheduledEventAttributes& WithName(const char* value) { SetName(value); return *this;}
68
70
74 inline const Aws::String& GetControl() const{ return m_control; }
75 inline bool ControlHasBeenSet() const { return m_controlHasBeenSet; }
76 inline void SetControl(const Aws::String& value) { m_controlHasBeenSet = true; m_control = value; }
77 inline void SetControl(Aws::String&& value) { m_controlHasBeenSet = true; m_control = std::move(value); }
78 inline void SetControl(const char* value) { m_controlHasBeenSet = true; m_control.assign(value); }
79 inline LambdaFunctionScheduledEventAttributes& WithControl(const Aws::String& value) { SetControl(value); return *this;}
80 inline LambdaFunctionScheduledEventAttributes& WithControl(Aws::String&& value) { SetControl(std::move(value)); return *this;}
81 inline LambdaFunctionScheduledEventAttributes& WithControl(const char* value) { SetControl(value); return *this;}
83
85
88 inline const Aws::String& GetInput() const{ return m_input; }
89 inline bool InputHasBeenSet() const { return m_inputHasBeenSet; }
90 inline void SetInput(const Aws::String& value) { m_inputHasBeenSet = true; m_input = value; }
91 inline void SetInput(Aws::String&& value) { m_inputHasBeenSet = true; m_input = std::move(value); }
92 inline void SetInput(const char* value) { m_inputHasBeenSet = true; m_input.assign(value); }
93 inline LambdaFunctionScheduledEventAttributes& WithInput(const Aws::String& value) { SetInput(value); return *this;}
94 inline LambdaFunctionScheduledEventAttributes& WithInput(Aws::String&& value) { SetInput(std::move(value)); return *this;}
95 inline LambdaFunctionScheduledEventAttributes& WithInput(const char* value) { SetInput(value); return *this;}
97
99
102 inline const Aws::String& GetStartToCloseTimeout() const{ return m_startToCloseTimeout; }
103 inline bool StartToCloseTimeoutHasBeenSet() const { return m_startToCloseTimeoutHasBeenSet; }
104 inline void SetStartToCloseTimeout(const Aws::String& value) { m_startToCloseTimeoutHasBeenSet = true; m_startToCloseTimeout = value; }
105 inline void SetStartToCloseTimeout(Aws::String&& value) { m_startToCloseTimeoutHasBeenSet = true; m_startToCloseTimeout = std::move(value); }
106 inline void SetStartToCloseTimeout(const char* value) { m_startToCloseTimeoutHasBeenSet = true; m_startToCloseTimeout.assign(value); }
111
113
119 inline long long GetDecisionTaskCompletedEventId() const{ return m_decisionTaskCompletedEventId; }
120 inline bool DecisionTaskCompletedEventIdHasBeenSet() const { return m_decisionTaskCompletedEventIdHasBeenSet; }
121 inline void SetDecisionTaskCompletedEventId(long long value) { m_decisionTaskCompletedEventIdHasBeenSet = true; m_decisionTaskCompletedEventId = value; }
124 private:
125
126 Aws::String m_id;
127 bool m_idHasBeenSet = false;
128
129 Aws::String m_name;
130 bool m_nameHasBeenSet = false;
131
132 Aws::String m_control;
133 bool m_controlHasBeenSet = false;
134
135 Aws::String m_input;
136 bool m_inputHasBeenSet = false;
137
138 Aws::String m_startToCloseTimeout;
139 bool m_startToCloseTimeoutHasBeenSet = false;
140
141 long long m_decisionTaskCompletedEventId;
142 bool m_decisionTaskCompletedEventIdHasBeenSet = false;
143 };
144
145} // namespace Model
146} // namespace SWF
147} // namespace Aws
LambdaFunctionScheduledEventAttributes & WithName(Aws::String &&value)
LambdaFunctionScheduledEventAttributes & WithInput(const Aws::String &value)
LambdaFunctionScheduledEventAttributes & WithInput(const char *value)
LambdaFunctionScheduledEventAttributes & WithControl(const Aws::String &value)
AWS_SWF_API Aws::Utils::Json::JsonValue Jsonize() const
LambdaFunctionScheduledEventAttributes & WithName(const Aws::String &value)
LambdaFunctionScheduledEventAttributes & WithStartToCloseTimeout(Aws::String &&value)
LambdaFunctionScheduledEventAttributes & WithControl(const char *value)
AWS_SWF_API LambdaFunctionScheduledEventAttributes(Aws::Utils::Json::JsonView jsonValue)
LambdaFunctionScheduledEventAttributes & WithId(Aws::String &&value)
LambdaFunctionScheduledEventAttributes & WithInput(Aws::String &&value)
LambdaFunctionScheduledEventAttributes & WithDecisionTaskCompletedEventId(long long value)
AWS_SWF_API LambdaFunctionScheduledEventAttributes & operator=(Aws::Utils::Json::JsonView jsonValue)
LambdaFunctionScheduledEventAttributes & WithId(const char *value)
LambdaFunctionScheduledEventAttributes & WithStartToCloseTimeout(const Aws::String &value)
LambdaFunctionScheduledEventAttributes & WithControl(Aws::String &&value)
LambdaFunctionScheduledEventAttributes & WithId(const Aws::String &value)
LambdaFunctionScheduledEventAttributes & WithName(const char *value)
LambdaFunctionScheduledEventAttributes & WithStartToCloseTimeout(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue