AWS SDK for C++

AWS SDK for C++ Version 1.11.899

Loading...
Searching...
No Matches
GetContextGraphResult.h
1
6#pragma once
7#include <aws/cloudwatchomni/CloudWatchOmni_EXPORTS.h>
8#include <aws/cloudwatchomni/model/Node.h>
9#include <aws/core/http/HttpResponse.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/crt/cbor/Cbor.h>
13
14#include <utility>
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Cbor {
21class CborValue;
22} // namespace Cbor
23} // namespace Utils
24namespace CloudWatchOmni {
25namespace Model {
33 public:
34 AWS_CLOUDWATCHOMNI_API GetContextGraphResult() = default;
37
39
42 inline const Aws::Vector<Node>& GetNodes() const { return m_nodes; }
43 template <typename NodesT = Aws::Vector<Node>>
44 void SetNodes(NodesT&& value) {
45 m_nodesHasBeenSet = true;
46 m_nodes = std::forward<NodesT>(value);
47 }
48 template <typename NodesT = Aws::Vector<Node>>
50 SetNodes(std::forward<NodesT>(value));
51 return *this;
52 }
53 template <typename NodesT = Node>
55 m_nodesHasBeenSet = true;
56 m_nodes.emplace_back(std::forward<NodesT>(value));
57 return *this;
58 }
60
62
66 inline const Aws::String& GetNextToken() const { return m_nextToken; }
67 template <typename NextTokenT = Aws::String>
68 void SetNextToken(NextTokenT&& value) {
69 m_nextTokenHasBeenSet = true;
70 m_nextToken = std::forward<NextTokenT>(value);
71 }
72 template <typename NextTokenT = Aws::String>
73 GetContextGraphResult& WithNextToken(NextTokenT&& value) {
74 SetNextToken(std::forward<NextTokenT>(value));
75 return *this;
76 }
78
80
81 inline const Aws::String& GetRequestId() const { return m_requestId; }
82 template <typename RequestIdT = Aws::String>
83 void SetRequestId(RequestIdT&& value) {
84 m_requestIdHasBeenSet = true;
85 m_requestId = std::forward<RequestIdT>(value);
86 }
87 template <typename RequestIdT = Aws::String>
88 GetContextGraphResult& WithRequestId(RequestIdT&& value) {
89 SetRequestId(std::forward<RequestIdT>(value));
90 return *this;
91 }
93 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
94
95 private:
96 Aws::Vector<Node> m_nodes;
97
98 Aws::String m_nextToken;
99
100 Aws::String m_requestId;
101 Aws::Http::HttpResponseCode m_HttpResponseCode;
102 bool m_nodesHasBeenSet = false;
103 bool m_nextTokenHasBeenSet = false;
104 bool m_requestIdHasBeenSet = false;
105};
106
107} // namespace Model
108} // namespace CloudWatchOmni
109} // namespace Aws
GetContextGraphResult & WithNodes(NodesT &&value)
GetContextGraphResult & WithRequestId(RequestIdT &&value)
AWS_CLOUDWATCHOMNI_API GetContextGraphResult(const Aws::AmazonWebServiceResult< Aws::Utils::Cbor::CborValue > &result)
GetContextGraphResult & AddNodes(NodesT &&value)
AWS_CLOUDWATCHOMNI_API GetContextGraphResult()=default
AWS_CLOUDWATCHOMNI_API GetContextGraphResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Cbor::CborValue > &result)
GetContextGraphResult & WithNextToken(NextTokenT &&value)
Aws::Http::HttpResponseCode GetHttpResponseCode() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector