AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetDataflowGraphResult.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/glue/model/CodeGenNode.h>
11#include <aws/glue/model/CodeGenEdge.h>
12#include <utility>
13
14namespace Aws
15{
16template<typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils
20{
21namespace Json
22{
23 class JsonValue;
24} // namespace Json
25} // namespace Utils
26namespace Glue
27{
28namespace Model
29{
31 {
32 public:
33 AWS_GLUE_API GetDataflowGraphResult() = default;
36
37
39
42 inline const Aws::Vector<CodeGenNode>& GetDagNodes() const { return m_dagNodes; }
43 template<typename DagNodesT = Aws::Vector<CodeGenNode>>
44 void SetDagNodes(DagNodesT&& value) { m_dagNodesHasBeenSet = true; m_dagNodes = std::forward<DagNodesT>(value); }
45 template<typename DagNodesT = Aws::Vector<CodeGenNode>>
46 GetDataflowGraphResult& WithDagNodes(DagNodesT&& value) { SetDagNodes(std::forward<DagNodesT>(value)); return *this;}
47 template<typename DagNodesT = CodeGenNode>
48 GetDataflowGraphResult& AddDagNodes(DagNodesT&& value) { m_dagNodesHasBeenSet = true; m_dagNodes.emplace_back(std::forward<DagNodesT>(value)); return *this; }
50
52
55 inline const Aws::Vector<CodeGenEdge>& GetDagEdges() const { return m_dagEdges; }
56 template<typename DagEdgesT = Aws::Vector<CodeGenEdge>>
57 void SetDagEdges(DagEdgesT&& value) { m_dagEdgesHasBeenSet = true; m_dagEdges = std::forward<DagEdgesT>(value); }
58 template<typename DagEdgesT = Aws::Vector<CodeGenEdge>>
59 GetDataflowGraphResult& WithDagEdges(DagEdgesT&& value) { SetDagEdges(std::forward<DagEdgesT>(value)); return *this;}
60 template<typename DagEdgesT = CodeGenEdge>
61 GetDataflowGraphResult& AddDagEdges(DagEdgesT&& value) { m_dagEdgesHasBeenSet = true; m_dagEdges.emplace_back(std::forward<DagEdgesT>(value)); return *this; }
63
65
66 inline const Aws::String& GetRequestId() const { return m_requestId; }
67 template<typename RequestIdT = Aws::String>
68 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
69 template<typename RequestIdT = Aws::String>
70 GetDataflowGraphResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
72 private:
73
74 Aws::Vector<CodeGenNode> m_dagNodes;
75 bool m_dagNodesHasBeenSet = false;
76
77 Aws::Vector<CodeGenEdge> m_dagEdges;
78 bool m_dagEdgesHasBeenSet = false;
79
80 Aws::String m_requestId;
81 bool m_requestIdHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace Glue
86} // namespace Aws
GetDataflowGraphResult & AddDagNodes(DagNodesT &&value)
GetDataflowGraphResult & WithRequestId(RequestIdT &&value)
GetDataflowGraphResult & WithDagEdges(DagEdgesT &&value)
const Aws::Vector< CodeGenEdge > & GetDagEdges() const
const Aws::Vector< CodeGenNode > & GetDagNodes() const
GetDataflowGraphResult & WithDagNodes(DagNodesT &&value)
AWS_GLUE_API GetDataflowGraphResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetDataflowGraphResult & AddDagEdges(DagEdgesT &&value)
AWS_GLUE_API GetDataflowGraphResult()=default
AWS_GLUE_API GetDataflowGraphResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue