AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeServiceAccessPoliciesRequest.h
1
6#pragma once
7#include <aws/cloudsearch/CloudSearch_EXPORTS.h>
8#include <aws/cloudsearch/CloudSearchRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CloudSearch
15{
16namespace Model
17{
18
29 {
30 public:
31 AWS_CLOUDSEARCH_API DescribeServiceAccessPoliciesRequest() = default;
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "DescribeServiceAccessPolicies"; }
38
39 AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override;
40
41 protected:
42 AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
43
44 public:
45
47
50 inline const Aws::String& GetDomainName() const { return m_domainName; }
51 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
52 template<typename DomainNameT = Aws::String>
53 void SetDomainName(DomainNameT&& value) { m_domainNameHasBeenSet = true; m_domainName = std::forward<DomainNameT>(value); }
54 template<typename DomainNameT = Aws::String>
55 DescribeServiceAccessPoliciesRequest& WithDomainName(DomainNameT&& value) { SetDomainName(std::forward<DomainNameT>(value)); return *this;}
57
59
63 inline bool GetDeployed() const { return m_deployed; }
64 inline bool DeployedHasBeenSet() const { return m_deployedHasBeenSet; }
65 inline void SetDeployed(bool value) { m_deployedHasBeenSet = true; m_deployed = value; }
66 inline DescribeServiceAccessPoliciesRequest& WithDeployed(bool value) { SetDeployed(value); return *this;}
68 private:
69
70 Aws::String m_domainName;
71 bool m_domainNameHasBeenSet = false;
72
73 bool m_deployed{false};
74 bool m_deployedHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace CloudSearch
79} // namespace Aws
AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override
DescribeServiceAccessPoliciesRequest & WithDomainName(DomainNameT &&value)
AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_CLOUDSEARCH_API DescribeServiceAccessPoliciesRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String