AWS SDK for C++

AWS SDK for C++ Version 1.11.742

Loading...
Searching...
No Matches
DescribeDomainEndpointOptionsRequest.h
1
6#pragma once
7#include <aws/cloudsearch/CloudSearchRequest.h>
8#include <aws/cloudsearch/CloudSearch_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace CloudSearch {
15namespace Model {
16
27 public:
28 AWS_CLOUDSEARCH_API DescribeDomainEndpointOptionsRequest() = default;
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 "DescribeDomainEndpointOptions"; }
35
36 AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
40
41 public:
43
46 inline const Aws::String& GetDomainName() const { return m_domainName; }
47 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
48 template <typename DomainNameT = Aws::String>
49 void SetDomainName(DomainNameT&& value) {
50 m_domainNameHasBeenSet = true;
51 m_domainName = std::forward<DomainNameT>(value);
52 }
53 template <typename DomainNameT = Aws::String>
55 SetDomainName(std::forward<DomainNameT>(value));
56 return *this;
57 }
59
61
65 inline bool GetDeployed() const { return m_deployed; }
66 inline bool DeployedHasBeenSet() const { return m_deployedHasBeenSet; }
67 inline void SetDeployed(bool value) {
68 m_deployedHasBeenSet = true;
69 m_deployed = value;
70 }
72 SetDeployed(value);
73 return *this;
74 }
76 private:
77 Aws::String m_domainName;
78
79 bool m_deployed{false};
80 bool m_domainNameHasBeenSet = false;
81 bool m_deployedHasBeenSet = false;
82};
83
84} // namespace Model
85} // namespace CloudSearch
86} // namespace Aws
AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeDomainEndpointOptionsRequest & WithDomainName(DomainNameT &&value)
AWS_CLOUDSEARCH_API DescribeDomainEndpointOptionsRequest()=default
AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String