AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
GetUpgradeStatusRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/es/ElasticsearchServiceRequest.h>
9#include <aws/es/ElasticsearchService_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ElasticsearchService {
15namespace Model {
16
24 public:
25 AWS_ELASTICSEARCHSERVICE_API GetUpgradeStatusRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetUpgradeStatus"; }
32
33 AWS_ELASTICSEARCHSERVICE_API Aws::String SerializePayload() const override;
34
36
37 inline const Aws::String& GetDomainName() const { return m_domainName; }
38 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
39 template <typename DomainNameT = Aws::String>
40 void SetDomainName(DomainNameT&& value) {
41 m_domainNameHasBeenSet = true;
42 m_domainName = std::forward<DomainNameT>(value);
43 }
44 template <typename DomainNameT = Aws::String>
46 SetDomainName(std::forward<DomainNameT>(value));
47 return *this;
48 }
50 private:
51 Aws::String m_domainName;
52 bool m_domainNameHasBeenSet = false;
53};
54
55} // namespace Model
56} // namespace ElasticsearchService
57} // namespace Aws
AWS_ELASTICSEARCHSERVICE_API Aws::String SerializePayload() const override
GetUpgradeStatusRequest & WithDomainName(DomainNameT &&value)
AWS_ELASTICSEARCHSERVICE_API GetUpgradeStatusRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String