AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ParentStepDetails.h
1
6#pragma once
7#include <aws/ssm/SSM_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 SSM
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_SSM_API ParentStepDetails() = default;
38
39
41
44 inline const Aws::String& GetStepExecutionId() const { return m_stepExecutionId; }
45 inline bool StepExecutionIdHasBeenSet() const { return m_stepExecutionIdHasBeenSet; }
46 template<typename StepExecutionIdT = Aws::String>
47 void SetStepExecutionId(StepExecutionIdT&& value) { m_stepExecutionIdHasBeenSet = true; m_stepExecutionId = std::forward<StepExecutionIdT>(value); }
48 template<typename StepExecutionIdT = Aws::String>
49 ParentStepDetails& WithStepExecutionId(StepExecutionIdT&& value) { SetStepExecutionId(std::forward<StepExecutionIdT>(value)); return *this;}
51
53
56 inline const Aws::String& GetStepName() const { return m_stepName; }
57 inline bool StepNameHasBeenSet() const { return m_stepNameHasBeenSet; }
58 template<typename StepNameT = Aws::String>
59 void SetStepName(StepNameT&& value) { m_stepNameHasBeenSet = true; m_stepName = std::forward<StepNameT>(value); }
60 template<typename StepNameT = Aws::String>
61 ParentStepDetails& WithStepName(StepNameT&& value) { SetStepName(std::forward<StepNameT>(value)); return *this;}
63
65
68 inline const Aws::String& GetAction() const { return m_action; }
69 inline bool ActionHasBeenSet() const { return m_actionHasBeenSet; }
70 template<typename ActionT = Aws::String>
71 void SetAction(ActionT&& value) { m_actionHasBeenSet = true; m_action = std::forward<ActionT>(value); }
72 template<typename ActionT = Aws::String>
73 ParentStepDetails& WithAction(ActionT&& value) { SetAction(std::forward<ActionT>(value)); return *this;}
75
77
80 inline int GetIteration() const { return m_iteration; }
81 inline bool IterationHasBeenSet() const { return m_iterationHasBeenSet; }
82 inline void SetIteration(int value) { m_iterationHasBeenSet = true; m_iteration = value; }
83 inline ParentStepDetails& WithIteration(int value) { SetIteration(value); return *this;}
85
87
90 inline const Aws::String& GetIteratorValue() const { return m_iteratorValue; }
91 inline bool IteratorValueHasBeenSet() const { return m_iteratorValueHasBeenSet; }
92 template<typename IteratorValueT = Aws::String>
93 void SetIteratorValue(IteratorValueT&& value) { m_iteratorValueHasBeenSet = true; m_iteratorValue = std::forward<IteratorValueT>(value); }
94 template<typename IteratorValueT = Aws::String>
95 ParentStepDetails& WithIteratorValue(IteratorValueT&& value) { SetIteratorValue(std::forward<IteratorValueT>(value)); return *this;}
97 private:
98
99 Aws::String m_stepExecutionId;
100 bool m_stepExecutionIdHasBeenSet = false;
101
102 Aws::String m_stepName;
103 bool m_stepNameHasBeenSet = false;
104
105 Aws::String m_action;
106 bool m_actionHasBeenSet = false;
107
108 int m_iteration{0};
109 bool m_iterationHasBeenSet = false;
110
111 Aws::String m_iteratorValue;
112 bool m_iteratorValueHasBeenSet = false;
113 };
114
115} // namespace Model
116} // namespace SSM
117} // namespace Aws
ParentStepDetails & WithStepName(StepNameT &&value)
void SetStepName(StepNameT &&value)
ParentStepDetails & WithIteratorValue(IteratorValueT &&value)
AWS_SSM_API ParentStepDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetIteratorValue() const
void SetIteratorValue(IteratorValueT &&value)
ParentStepDetails & WithIteration(int value)
const Aws::String & GetStepName() const
const Aws::String & GetAction() const
AWS_SSM_API Aws::Utils::Json::JsonValue Jsonize() const
ParentStepDetails & WithStepExecutionId(StepExecutionIdT &&value)
void SetStepExecutionId(StepExecutionIdT &&value)
const Aws::String & GetStepExecutionId() const
AWS_SSM_API ParentStepDetails()=default
ParentStepDetails & WithAction(ActionT &&value)
AWS_SSM_API ParentStepDetails(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue