AWS SDK for C++

AWS SDK for C++ Version 1.11.760

Loading...
Searching...
No Matches
UpdateElasticsearchDomainConfigResult.h
1
6#pragma once
7#include <aws/core/http/HttpResponse.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/es/ElasticsearchService_EXPORTS.h>
10#include <aws/es/model/DryRunResults.h>
11#include <aws/es/model/ElasticsearchDomainConfig.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Json {
21class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace ElasticsearchService {
25namespace Model {
33 public:
34 AWS_ELASTICSEARCHSERVICE_API UpdateElasticsearchDomainConfigResult() = default;
35 AWS_ELASTICSEARCHSERVICE_API UpdateElasticsearchDomainConfigResult(
37 AWS_ELASTICSEARCHSERVICE_API UpdateElasticsearchDomainConfigResult& operator=(
39
41
44 inline const ElasticsearchDomainConfig& GetDomainConfig() const { return m_domainConfig; }
45 template <typename DomainConfigT = ElasticsearchDomainConfig>
46 void SetDomainConfig(DomainConfigT&& value) {
47 m_domainConfigHasBeenSet = true;
48 m_domainConfig = std::forward<DomainConfigT>(value);
49 }
50 template <typename DomainConfigT = ElasticsearchDomainConfig>
52 SetDomainConfig(std::forward<DomainConfigT>(value));
53 return *this;
54 }
56
58
61 inline const DryRunResults& GetDryRunResults() const { return m_dryRunResults; }
62 template <typename DryRunResultsT = DryRunResults>
63 void SetDryRunResults(DryRunResultsT&& value) {
64 m_dryRunResultsHasBeenSet = true;
65 m_dryRunResults = std::forward<DryRunResultsT>(value);
66 }
67 template <typename DryRunResultsT = DryRunResults>
69 SetDryRunResults(std::forward<DryRunResultsT>(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 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
89
90 private:
91 ElasticsearchDomainConfig m_domainConfig;
92
93 DryRunResults m_dryRunResults;
94
95 Aws::String m_requestId;
96 Aws::Http::HttpResponseCode m_HttpResponseCode;
97 bool m_domainConfigHasBeenSet = false;
98 bool m_dryRunResultsHasBeenSet = false;
99 bool m_requestIdHasBeenSet = false;
100};
101
102} // namespace Model
103} // namespace ElasticsearchService
104} // namespace Aws
UpdateElasticsearchDomainConfigResult & WithDomainConfig(DomainConfigT &&value)
UpdateElasticsearchDomainConfigResult & WithDryRunResults(DryRunResultsT &&value)
AWS_ELASTICSEARCHSERVICE_API UpdateElasticsearchDomainConfigResult()=default
AWS_ELASTICSEARCHSERVICE_API UpdateElasticsearchDomainConfigResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_ELASTICSEARCHSERVICE_API UpdateElasticsearchDomainConfigResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue