AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDryRunProgressRequest.h
1
6#pragma once
7#include <aws/opensearch/OpenSearchService_EXPORTS.h>
8#include <aws/opensearch/OpenSearchServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace OpenSearchService
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_OPENSEARCHSERVICE_API DescribeDryRunProgressRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeDryRunProgress"; }
35
36 AWS_OPENSEARCHSERVICE_API Aws::String SerializePayload() const override;
37
38 AWS_OPENSEARCHSERVICE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetDomainName() const{ return m_domainName; }
46 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
47 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
48 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
49 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
50 inline DescribeDryRunProgressRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
51 inline DescribeDryRunProgressRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
52 inline DescribeDryRunProgressRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;}
54
56
59 inline const Aws::String& GetDryRunId() const{ return m_dryRunId; }
60 inline bool DryRunIdHasBeenSet() const { return m_dryRunIdHasBeenSet; }
61 inline void SetDryRunId(const Aws::String& value) { m_dryRunIdHasBeenSet = true; m_dryRunId = value; }
62 inline void SetDryRunId(Aws::String&& value) { m_dryRunIdHasBeenSet = true; m_dryRunId = std::move(value); }
63 inline void SetDryRunId(const char* value) { m_dryRunIdHasBeenSet = true; m_dryRunId.assign(value); }
64 inline DescribeDryRunProgressRequest& WithDryRunId(const Aws::String& value) { SetDryRunId(value); return *this;}
65 inline DescribeDryRunProgressRequest& WithDryRunId(Aws::String&& value) { SetDryRunId(std::move(value)); return *this;}
66 inline DescribeDryRunProgressRequest& WithDryRunId(const char* value) { SetDryRunId(value); return *this;}
68
70
75 inline bool GetLoadDryRunConfig() const{ return m_loadDryRunConfig; }
76 inline bool LoadDryRunConfigHasBeenSet() const { return m_loadDryRunConfigHasBeenSet; }
77 inline void SetLoadDryRunConfig(bool value) { m_loadDryRunConfigHasBeenSet = true; m_loadDryRunConfig = value; }
78 inline DescribeDryRunProgressRequest& WithLoadDryRunConfig(bool value) { SetLoadDryRunConfig(value); return *this;}
80 private:
81
82 Aws::String m_domainName;
83 bool m_domainNameHasBeenSet = false;
84
85 Aws::String m_dryRunId;
86 bool m_dryRunIdHasBeenSet = false;
87
88 bool m_loadDryRunConfig;
89 bool m_loadDryRunConfigHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace OpenSearchService
94} // namespace Aws
DescribeDryRunProgressRequest & WithDomainName(const char *value)
AWS_OPENSEARCHSERVICE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DescribeDryRunProgressRequest & WithDryRunId(const char *value)
DescribeDryRunProgressRequest & WithDomainName(Aws::String &&value)
AWS_OPENSEARCHSERVICE_API Aws::String SerializePayload() const override
DescribeDryRunProgressRequest & WithDryRunId(const Aws::String &value)
DescribeDryRunProgressRequest & WithDryRunId(Aws::String &&value)
DescribeDryRunProgressRequest & WithDomainName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String