AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
JobStepRestartMarker.h
1
6#pragma once
7#include <aws/m2/MainframeModernization_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 MainframeModernization
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_MAINFRAMEMODERNIZATION_API JobStepRestartMarker() = default;
36 AWS_MAINFRAMEMODERNIZATION_API JobStepRestartMarker(Aws::Utils::Json::JsonView jsonValue);
37 AWS_MAINFRAMEMODERNIZATION_API JobStepRestartMarker& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MAINFRAMEMODERNIZATION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetFromProcStep() const { return m_fromProcStep; }
46 inline bool FromProcStepHasBeenSet() const { return m_fromProcStepHasBeenSet; }
47 template<typename FromProcStepT = Aws::String>
48 void SetFromProcStep(FromProcStepT&& value) { m_fromProcStepHasBeenSet = true; m_fromProcStep = std::forward<FromProcStepT>(value); }
49 template<typename FromProcStepT = Aws::String>
50 JobStepRestartMarker& WithFromProcStep(FromProcStepT&& value) { SetFromProcStep(std::forward<FromProcStepT>(value)); return *this;}
52
54
57 inline const Aws::String& GetFromStep() const { return m_fromStep; }
58 inline bool FromStepHasBeenSet() const { return m_fromStepHasBeenSet; }
59 template<typename FromStepT = Aws::String>
60 void SetFromStep(FromStepT&& value) { m_fromStepHasBeenSet = true; m_fromStep = std::forward<FromStepT>(value); }
61 template<typename FromStepT = Aws::String>
62 JobStepRestartMarker& WithFromStep(FromStepT&& value) { SetFromStep(std::forward<FromStepT>(value)); return *this;}
64
66
70 inline bool GetSkip() const { return m_skip; }
71 inline bool SkipHasBeenSet() const { return m_skipHasBeenSet; }
72 inline void SetSkip(bool value) { m_skipHasBeenSet = true; m_skip = value; }
73 inline JobStepRestartMarker& WithSkip(bool value) { SetSkip(value); return *this;}
75
77
81 inline int GetStepCheckpoint() const { return m_stepCheckpoint; }
82 inline bool StepCheckpointHasBeenSet() const { return m_stepCheckpointHasBeenSet; }
83 inline void SetStepCheckpoint(int value) { m_stepCheckpointHasBeenSet = true; m_stepCheckpoint = value; }
84 inline JobStepRestartMarker& WithStepCheckpoint(int value) { SetStepCheckpoint(value); return *this;}
86
88
91 inline const Aws::String& GetToProcStep() const { return m_toProcStep; }
92 inline bool ToProcStepHasBeenSet() const { return m_toProcStepHasBeenSet; }
93 template<typename ToProcStepT = Aws::String>
94 void SetToProcStep(ToProcStepT&& value) { m_toProcStepHasBeenSet = true; m_toProcStep = std::forward<ToProcStepT>(value); }
95 template<typename ToProcStepT = Aws::String>
96 JobStepRestartMarker& WithToProcStep(ToProcStepT&& value) { SetToProcStep(std::forward<ToProcStepT>(value)); return *this;}
98
100
103 inline const Aws::String& GetToStep() const { return m_toStep; }
104 inline bool ToStepHasBeenSet() const { return m_toStepHasBeenSet; }
105 template<typename ToStepT = Aws::String>
106 void SetToStep(ToStepT&& value) { m_toStepHasBeenSet = true; m_toStep = std::forward<ToStepT>(value); }
107 template<typename ToStepT = Aws::String>
108 JobStepRestartMarker& WithToStep(ToStepT&& value) { SetToStep(std::forward<ToStepT>(value)); return *this;}
110 private:
111
112 Aws::String m_fromProcStep;
113 bool m_fromProcStepHasBeenSet = false;
114
115 Aws::String m_fromStep;
116 bool m_fromStepHasBeenSet = false;
117
118 bool m_skip{false};
119 bool m_skipHasBeenSet = false;
120
121 int m_stepCheckpoint{0};
122 bool m_stepCheckpointHasBeenSet = false;
123
124 Aws::String m_toProcStep;
125 bool m_toProcStepHasBeenSet = false;
126
127 Aws::String m_toStep;
128 bool m_toStepHasBeenSet = false;
129 };
130
131} // namespace Model
132} // namespace MainframeModernization
133} // namespace Aws
JobStepRestartMarker & WithFromStep(FromStepT &&value)
AWS_MAINFRAMEMODERNIZATION_API JobStepRestartMarker(Aws::Utils::Json::JsonView jsonValue)
JobStepRestartMarker & WithToProcStep(ToProcStepT &&value)
AWS_MAINFRAMEMODERNIZATION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MAINFRAMEMODERNIZATION_API JobStepRestartMarker()=default
AWS_MAINFRAMEMODERNIZATION_API JobStepRestartMarker & operator=(Aws::Utils::Json::JsonView jsonValue)
JobStepRestartMarker & WithFromProcStep(FromProcStepT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue