AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StateEnteredEventDetails.h
1
6#pragma once
7#include <aws/states/SFN_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/states/model/HistoryEventExecutionDataDetails.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SFN
23{
24namespace Model
25{
26
34 {
35 public:
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline StateEnteredEventDetails& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline StateEnteredEventDetails& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline StateEnteredEventDetails& WithName(const char* value) { SetName(value); return *this;}
55
57
62 inline const Aws::String& GetInput() const{ return m_input; }
63 inline bool InputHasBeenSet() const { return m_inputHasBeenSet; }
64 inline void SetInput(const Aws::String& value) { m_inputHasBeenSet = true; m_input = value; }
65 inline void SetInput(Aws::String&& value) { m_inputHasBeenSet = true; m_input = std::move(value); }
66 inline void SetInput(const char* value) { m_inputHasBeenSet = true; m_input.assign(value); }
67 inline StateEnteredEventDetails& WithInput(const Aws::String& value) { SetInput(value); return *this;}
68 inline StateEnteredEventDetails& WithInput(Aws::String&& value) { SetInput(std::move(value)); return *this;}
69 inline StateEnteredEventDetails& WithInput(const char* value) { SetInput(value); return *this;}
71
73
76 inline const HistoryEventExecutionDataDetails& GetInputDetails() const{ return m_inputDetails; }
77 inline bool InputDetailsHasBeenSet() const { return m_inputDetailsHasBeenSet; }
78 inline void SetInputDetails(const HistoryEventExecutionDataDetails& value) { m_inputDetailsHasBeenSet = true; m_inputDetails = value; }
79 inline void SetInputDetails(HistoryEventExecutionDataDetails&& value) { m_inputDetailsHasBeenSet = true; m_inputDetails = std::move(value); }
83 private:
84
85 Aws::String m_name;
86 bool m_nameHasBeenSet = false;
87
88 Aws::String m_input;
89 bool m_inputHasBeenSet = false;
90
92 bool m_inputDetailsHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace SFN
97} // namespace Aws
AWS_SFN_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SFN_API StateEnteredEventDetails(Aws::Utils::Json::JsonView jsonValue)
StateEnteredEventDetails & WithName(Aws::String &&value)
StateEnteredEventDetails & WithInput(const Aws::String &value)
StateEnteredEventDetails & WithInput(Aws::String &&value)
StateEnteredEventDetails & WithName(const Aws::String &value)
StateEnteredEventDetails & WithInputDetails(HistoryEventExecutionDataDetails &&value)
AWS_SFN_API StateEnteredEventDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
StateEnteredEventDetails & WithInputDetails(const HistoryEventExecutionDataDetails &value)
const HistoryEventExecutionDataDetails & GetInputDetails() const
void SetInputDetails(HistoryEventExecutionDataDetails &&value)
StateEnteredEventDetails & WithName(const char *value)
void SetInputDetails(const HistoryEventExecutionDataDetails &value)
StateEnteredEventDetails & WithInput(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue