AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SetVariableAction.h
1
6#pragma once
7#include <aws/iotevents/IoTEvents_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 IoTEvents
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_IOTEVENTS_API SetVariableAction();
36 AWS_IOTEVENTS_API SetVariableAction(Aws::Utils::Json::JsonView jsonValue);
38 AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetVariableName() const{ return m_variableName; }
46 inline bool VariableNameHasBeenSet() const { return m_variableNameHasBeenSet; }
47 inline void SetVariableName(const Aws::String& value) { m_variableNameHasBeenSet = true; m_variableName = value; }
48 inline void SetVariableName(Aws::String&& value) { m_variableNameHasBeenSet = true; m_variableName = std::move(value); }
49 inline void SetVariableName(const char* value) { m_variableNameHasBeenSet = true; m_variableName.assign(value); }
50 inline SetVariableAction& WithVariableName(const Aws::String& value) { SetVariableName(value); return *this;}
51 inline SetVariableAction& WithVariableName(Aws::String&& value) { SetVariableName(std::move(value)); return *this;}
52 inline SetVariableAction& WithVariableName(const char* value) { SetVariableName(value); return *this;}
54
56
59 inline const Aws::String& GetValue() const{ return m_value; }
60 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
61 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
62 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
63 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
64 inline SetVariableAction& WithValue(const Aws::String& value) { SetValue(value); return *this;}
65 inline SetVariableAction& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
66 inline SetVariableAction& WithValue(const char* value) { SetValue(value); return *this;}
68 private:
69
70 Aws::String m_variableName;
71 bool m_variableNameHasBeenSet = false;
72
73 Aws::String m_value;
74 bool m_valueHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace IoTEvents
79} // namespace Aws
AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const
SetVariableAction & WithVariableName(const char *value)
AWS_IOTEVENTS_API SetVariableAction(Aws::Utils::Json::JsonView jsonValue)
SetVariableAction & WithValue(const char *value)
void SetVariableName(const Aws::String &value)
SetVariableAction & WithValue(const Aws::String &value)
SetVariableAction & WithVariableName(const Aws::String &value)
void SetValue(const Aws::String &value)
AWS_IOTEVENTS_API SetVariableAction & operator=(Aws::Utils::Json::JsonView jsonValue)
SetVariableAction & WithValue(Aws::String &&value)
const Aws::String & GetVariableName() const
SetVariableAction & WithVariableName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue