AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DescribeDryRunProgressRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/opensearch/OpenSearchServiceRequest.h>
9#include <aws/opensearch/OpenSearchService_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace OpenSearchService {
18namespace Model {
19
23 public:
24 AWS_OPENSEARCHSERVICE_API DescribeDryRunProgressRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeDryRunProgress"; }
31
32 AWS_OPENSEARCHSERVICE_API Aws::String SerializePayload() const override;
33
34 AWS_OPENSEARCHSERVICE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetDomainName() const { return m_domainName; }
41 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
42 template <typename DomainNameT = Aws::String>
43 void SetDomainName(DomainNameT&& value) {
44 m_domainNameHasBeenSet = true;
45 m_domainName = std::forward<DomainNameT>(value);
46 }
47 template <typename DomainNameT = Aws::String>
49 SetDomainName(std::forward<DomainNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetDryRunId() const { return m_dryRunId; }
59 inline bool DryRunIdHasBeenSet() const { return m_dryRunIdHasBeenSet; }
60 template <typename DryRunIdT = Aws::String>
61 void SetDryRunId(DryRunIdT&& value) {
62 m_dryRunIdHasBeenSet = true;
63 m_dryRunId = std::forward<DryRunIdT>(value);
64 }
65 template <typename DryRunIdT = Aws::String>
67 SetDryRunId(std::forward<DryRunIdT>(value));
68 return *this;
69 }
71
73
78 inline bool GetLoadDryRunConfig() const { return m_loadDryRunConfig; }
79 inline bool LoadDryRunConfigHasBeenSet() const { return m_loadDryRunConfigHasBeenSet; }
80 inline void SetLoadDryRunConfig(bool value) {
81 m_loadDryRunConfigHasBeenSet = true;
82 m_loadDryRunConfig = value;
83 }
86 return *this;
87 }
89 private:
90 Aws::String m_domainName;
91
92 Aws::String m_dryRunId;
93
94 bool m_loadDryRunConfig{false};
95 bool m_domainNameHasBeenSet = false;
96 bool m_dryRunIdHasBeenSet = false;
97 bool m_loadDryRunConfigHasBeenSet = false;
98};
99
100} // namespace Model
101} // namespace OpenSearchService
102} // namespace Aws
AWS_OPENSEARCHSERVICE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DescribeDryRunProgressRequest & WithDomainName(DomainNameT &&value)
DescribeDryRunProgressRequest & WithDryRunId(DryRunIdT &&value)
AWS_OPENSEARCHSERVICE_API Aws::String SerializePayload() const override
AWS_OPENSEARCHSERVICE_API DescribeDryRunProgressRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String