AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DescribeConfigurationTemplatesResult.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/logs/CloudWatchLogs_EXPORTS.h>
10#include <aws/logs/model/ConfigurationTemplate.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace CloudWatchLogs {
24namespace Model {
26 public:
27 AWS_CLOUDWATCHLOGS_API DescribeConfigurationTemplatesResult() = default;
31
33
37 inline const Aws::Vector<ConfigurationTemplate>& GetConfigurationTemplates() const { return m_configurationTemplates; }
38 template <typename ConfigurationTemplatesT = Aws::Vector<ConfigurationTemplate>>
39 void SetConfigurationTemplates(ConfigurationTemplatesT&& value) {
40 m_configurationTemplatesHasBeenSet = true;
41 m_configurationTemplates = std::forward<ConfigurationTemplatesT>(value);
42 }
43 template <typename ConfigurationTemplatesT = Aws::Vector<ConfigurationTemplate>>
45 SetConfigurationTemplates(std::forward<ConfigurationTemplatesT>(value));
46 return *this;
47 }
48 template <typename ConfigurationTemplatesT = ConfigurationTemplate>
50 m_configurationTemplatesHasBeenSet = true;
51 m_configurationTemplates.emplace_back(std::forward<ConfigurationTemplatesT>(value));
52 return *this;
53 }
55
57
58 inline const Aws::String& GetNextToken() const { return m_nextToken; }
59 template <typename NextTokenT = Aws::String>
60 void SetNextToken(NextTokenT&& value) {
61 m_nextTokenHasBeenSet = true;
62 m_nextToken = std::forward<NextTokenT>(value);
63 }
64 template <typename NextTokenT = Aws::String>
66 SetNextToken(std::forward<NextTokenT>(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::Vector<ConfigurationTemplate> m_configurationTemplates;
87
88 Aws::String m_nextToken;
89
90 Aws::String m_requestId;
91 bool m_configurationTemplatesHasBeenSet = false;
92 bool m_nextTokenHasBeenSet = false;
93 bool m_requestIdHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace CloudWatchLogs
98} // namespace Aws
DescribeConfigurationTemplatesResult & WithRequestId(RequestIdT &&value)
AWS_CLOUDWATCHLOGS_API DescribeConfigurationTemplatesResult()=default
DescribeConfigurationTemplatesResult & WithConfigurationTemplates(ConfigurationTemplatesT &&value)
DescribeConfigurationTemplatesResult & WithNextToken(NextTokenT &&value)
const Aws::Vector< ConfigurationTemplate > & GetConfigurationTemplates() const
AWS_CLOUDWATCHLOGS_API DescribeConfigurationTemplatesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_CLOUDWATCHLOGS_API DescribeConfigurationTemplatesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeConfigurationTemplatesResult & AddConfigurationTemplates(ConfigurationTemplatesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue