AWS SDK for C++

AWS SDK for C++ Version 1.11.683

Loading...
Searching...
No Matches
ResumeWorkflowRunResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/glue/Glue_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14template <typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils {
18namespace Json {
19class JsonValue;
20} // namespace Json
21} // namespace Utils
22namespace Glue {
23namespace Model {
25 public:
26 AWS_GLUE_API ResumeWorkflowRunResult() = default;
29
31
35 inline const Aws::String& GetRunId() const { return m_runId; }
36 template <typename RunIdT = Aws::String>
37 void SetRunId(RunIdT&& value) {
38 m_runIdHasBeenSet = true;
39 m_runId = std::forward<RunIdT>(value);
40 }
41 template <typename RunIdT = Aws::String>
43 SetRunId(std::forward<RunIdT>(value));
44 return *this;
45 }
47
49
52 inline const Aws::Vector<Aws::String>& GetNodeIds() const { return m_nodeIds; }
53 template <typename NodeIdsT = Aws::Vector<Aws::String>>
54 void SetNodeIds(NodeIdsT&& value) {
55 m_nodeIdsHasBeenSet = true;
56 m_nodeIds = std::forward<NodeIdsT>(value);
57 }
58 template <typename NodeIdsT = Aws::Vector<Aws::String>>
60 SetNodeIds(std::forward<NodeIdsT>(value));
61 return *this;
62 }
63 template <typename NodeIdsT = Aws::String>
65 m_nodeIdsHasBeenSet = true;
66 m_nodeIds.emplace_back(std::forward<NodeIdsT>(value));
67 return *this;
68 }
70
72
73 inline const Aws::String& GetRequestId() const { return m_requestId; }
74 template <typename RequestIdT = Aws::String>
75 void SetRequestId(RequestIdT&& value) {
76 m_requestIdHasBeenSet = true;
77 m_requestId = std::forward<RequestIdT>(value);
78 }
79 template <typename RequestIdT = Aws::String>
81 SetRequestId(std::forward<RequestIdT>(value));
82 return *this;
83 }
85 private:
86 Aws::String m_runId;
87 bool m_runIdHasBeenSet = false;
88
90 bool m_nodeIdsHasBeenSet = false;
91
92 Aws::String m_requestId;
93 bool m_requestIdHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace Glue
98} // namespace Aws
const Aws::Vector< Aws::String > & GetNodeIds() const
AWS_GLUE_API ResumeWorkflowRunResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ResumeWorkflowRunResult & AddNodeIds(NodeIdsT &&value)
AWS_GLUE_API ResumeWorkflowRunResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ResumeWorkflowRunResult & WithRunId(RunIdT &&value)
ResumeWorkflowRunResult & WithRequestId(RequestIdT &&value)
ResumeWorkflowRunResult & WithNodeIds(NodeIdsT &&value)
AWS_GLUE_API ResumeWorkflowRunResult()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue