AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDryRunProgressResult.h
1
6#pragma once
7#include <aws/opensearch/OpenSearchService_EXPORTS.h>
8#include <aws/opensearch/model/DryRunProgressStatus.h>
9#include <aws/opensearch/model/DomainStatus.h>
10#include <aws/opensearch/model/DryRunResults.h>
11#include <aws/core/utils/memory/stl/AWSString.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 OpenSearchService
27{
28namespace Model
29{
31 {
32 public:
33 AWS_OPENSEARCHSERVICE_API DescribeDryRunProgressResult();
36
37
39
42 inline const DryRunProgressStatus& GetDryRunProgressStatus() const{ return m_dryRunProgressStatus; }
43 inline void SetDryRunProgressStatus(const DryRunProgressStatus& value) { m_dryRunProgressStatus = value; }
44 inline void SetDryRunProgressStatus(DryRunProgressStatus&& value) { m_dryRunProgressStatus = std::move(value); }
48
50
53 inline const DomainStatus& GetDryRunConfig() const{ return m_dryRunConfig; }
54 inline void SetDryRunConfig(const DomainStatus& value) { m_dryRunConfig = value; }
55 inline void SetDryRunConfig(DomainStatus&& value) { m_dryRunConfig = std::move(value); }
56 inline DescribeDryRunProgressResult& WithDryRunConfig(const DomainStatus& value) { SetDryRunConfig(value); return *this;}
57 inline DescribeDryRunProgressResult& WithDryRunConfig(DomainStatus&& value) { SetDryRunConfig(std::move(value)); return *this;}
59
61
64 inline const DryRunResults& GetDryRunResults() const{ return m_dryRunResults; }
65 inline void SetDryRunResults(const DryRunResults& value) { m_dryRunResults = value; }
66 inline void SetDryRunResults(DryRunResults&& value) { m_dryRunResults = std::move(value); }
68 inline DescribeDryRunProgressResult& WithDryRunResults(DryRunResults&& value) { SetDryRunResults(std::move(value)); return *this;}
70
72
73 inline const Aws::String& GetRequestId() const{ return m_requestId; }
74 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
75 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
76 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
77 inline DescribeDryRunProgressResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
78 inline DescribeDryRunProgressResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
79 inline DescribeDryRunProgressResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
81 private:
82
83 DryRunProgressStatus m_dryRunProgressStatus;
84
85 DomainStatus m_dryRunConfig;
86
87 DryRunResults m_dryRunResults;
88
89 Aws::String m_requestId;
90 };
91
92} // namespace Model
93} // namespace OpenSearchService
94} // namespace Aws
DescribeDryRunProgressResult & WithRequestId(const char *value)
AWS_OPENSEARCHSERVICE_API DescribeDryRunProgressResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeDryRunProgressResult & WithDryRunResults(const DryRunResults &value)
AWS_OPENSEARCHSERVICE_API DescribeDryRunProgressResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeDryRunProgressResult & WithRequestId(Aws::String &&value)
DescribeDryRunProgressResult & WithDryRunConfig(const DomainStatus &value)
DescribeDryRunProgressResult & WithDryRunProgressStatus(const DryRunProgressStatus &value)
DescribeDryRunProgressResult & WithDryRunResults(DryRunResults &&value)
DescribeDryRunProgressResult & WithDryRunProgressStatus(DryRunProgressStatus &&value)
DescribeDryRunProgressResult & WithDryRunConfig(DomainStatus &&value)
DescribeDryRunProgressResult & WithRequestId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue