AWS SDK for C++

AWS SDK for C++ Version 1.11.790

Loading...
Searching...
No Matches
DescribeInsightRulesResult.h
1
6#pragma once
7#include <aws/core/http/HttpResponse.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/crt/cbor/Cbor.h>
11#include <aws/monitoring/CloudWatch_EXPORTS.h>
12#include <aws/monitoring/model/InsightRule.h>
13#include <aws/monitoring/model/ResponseMetadata.h>
14
15#include <utility>
16namespace Aws {
17template <typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils {
21namespace Cbor {
22class CborValue;
23} // namespace Cbor
24} // namespace Utils
25namespace CloudWatch {
26namespace Model {
28 public:
29 AWS_CLOUDWATCH_API DescribeInsightRulesResult() = default;
32
34
38 inline const Aws::String& GetNextToken() const { return m_nextToken; }
39 template <typename NextTokenT = Aws::String>
40 void SetNextToken(NextTokenT&& value) {
41 m_nextTokenHasBeenSet = true;
42 m_nextToken = std::forward<NextTokenT>(value);
43 }
44 template <typename NextTokenT = Aws::String>
46 SetNextToken(std::forward<NextTokenT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::Vector<InsightRule>& GetInsightRules() const { return m_insightRules; }
56 template <typename InsightRulesT = Aws::Vector<InsightRule>>
57 void SetInsightRules(InsightRulesT&& value) {
58 m_insightRulesHasBeenSet = true;
59 m_insightRules = std::forward<InsightRulesT>(value);
60 }
61 template <typename InsightRulesT = Aws::Vector<InsightRule>>
63 SetInsightRules(std::forward<InsightRulesT>(value));
64 return *this;
65 }
66 template <typename InsightRulesT = InsightRule>
68 m_insightRulesHasBeenSet = true;
69 m_insightRules.emplace_back(std::forward<InsightRulesT>(value));
70 return *this;
71 }
73
75
76 inline const Aws::String& GetRequestId() const { return m_requestId; }
77 template <typename RequestIdT = Aws::String>
78 void SetRequestId(RequestIdT&& value) {
79 m_requestIdHasBeenSet = true;
80 m_requestId = std::forward<RequestIdT>(value);
81 }
82 template <typename RequestIdT = Aws::String>
84 SetRequestId(std::forward<RequestIdT>(value));
85 return *this;
86 }
88
90
91 inline const ResponseMetadata& GetResponseMetadata() const { return m_responseMetadata; }
92 template <typename ResponseMetadataT = ResponseMetadata>
93 void SetResponseMetadata(ResponseMetadataT&& value) {
94 m_responseMetadataHasBeenSet = true;
95 m_responseMetadata = std::forward<ResponseMetadataT>(value);
96 }
97 template <typename ResponseMetadataT = ResponseMetadata>
99 SetResponseMetadata(std::forward<ResponseMetadataT>(value));
100 return *this;
101 }
103 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
104
105 private:
106 Aws::String m_nextToken;
107
108 Aws::Vector<InsightRule> m_insightRules;
109
110 Aws::String m_requestId;
111
112 ResponseMetadata m_responseMetadata;
113 Aws::Http::HttpResponseCode m_HttpResponseCode;
114 bool m_nextTokenHasBeenSet = false;
115 bool m_insightRulesHasBeenSet = false;
116 bool m_requestIdHasBeenSet = false;
117 bool m_responseMetadataHasBeenSet = false;
118};
119
120} // namespace Model
121} // namespace CloudWatch
122} // namespace Aws
DescribeInsightRulesResult & WithResponseMetadata(ResponseMetadataT &&value)
AWS_CLOUDWATCH_API DescribeInsightRulesResult()=default
DescribeInsightRulesResult & WithRequestId(RequestIdT &&value)
AWS_CLOUDWATCH_API DescribeInsightRulesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Cbor::CborValue > &result)
const Aws::Vector< InsightRule > & GetInsightRules() const
DescribeInsightRulesResult & WithInsightRules(InsightRulesT &&value)
AWS_CLOUDWATCH_API DescribeInsightRulesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Cbor::CborValue > &result)
DescribeInsightRulesResult & WithNextToken(NextTokenT &&value)
DescribeInsightRulesResult & AddInsightRules(InsightRulesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector