AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeAnalysisSchemesRequest.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 <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CloudSearch
16{
17namespace Model
18{
19
32 {
33 public:
34 AWS_CLOUDSEARCH_API DescribeAnalysisSchemesRequest();
35
36 // Service request name is the Operation name which will send this request out,
37 // each operation should has unique request name, so that we can get operation's name from this request.
38 // Note: this is not true for response, multiple operations may have the same response name,
39 // so we can not get operation's name from response.
40 inline virtual const char* GetServiceRequestName() const override { return "DescribeAnalysisSchemes"; }
41
42 AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override;
43
44 protected:
45 AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
46
47 public:
48
50
53 inline const Aws::String& GetDomainName() const{ return m_domainName; }
54 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
55 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
56 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
57 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
58 inline DescribeAnalysisSchemesRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
59 inline DescribeAnalysisSchemesRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
60 inline DescribeAnalysisSchemesRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;}
62
64
67 inline const Aws::Vector<Aws::String>& GetAnalysisSchemeNames() const{ return m_analysisSchemeNames; }
68 inline bool AnalysisSchemeNamesHasBeenSet() const { return m_analysisSchemeNamesHasBeenSet; }
69 inline void SetAnalysisSchemeNames(const Aws::Vector<Aws::String>& value) { m_analysisSchemeNamesHasBeenSet = true; m_analysisSchemeNames = value; }
70 inline void SetAnalysisSchemeNames(Aws::Vector<Aws::String>&& value) { m_analysisSchemeNamesHasBeenSet = true; m_analysisSchemeNames = std::move(value); }
73 inline DescribeAnalysisSchemesRequest& AddAnalysisSchemeNames(const Aws::String& value) { m_analysisSchemeNamesHasBeenSet = true; m_analysisSchemeNames.push_back(value); return *this; }
74 inline DescribeAnalysisSchemesRequest& AddAnalysisSchemeNames(Aws::String&& value) { m_analysisSchemeNamesHasBeenSet = true; m_analysisSchemeNames.push_back(std::move(value)); return *this; }
75 inline DescribeAnalysisSchemesRequest& AddAnalysisSchemeNames(const char* value) { m_analysisSchemeNamesHasBeenSet = true; m_analysisSchemeNames.push_back(value); return *this; }
77
79
83 inline bool GetDeployed() const{ return m_deployed; }
84 inline bool DeployedHasBeenSet() const { return m_deployedHasBeenSet; }
85 inline void SetDeployed(bool value) { m_deployedHasBeenSet = true; m_deployed = value; }
86 inline DescribeAnalysisSchemesRequest& WithDeployed(bool value) { SetDeployed(value); return *this;}
88 private:
89
90 Aws::String m_domainName;
91 bool m_domainNameHasBeenSet = false;
92
93 Aws::Vector<Aws::String> m_analysisSchemeNames;
94 bool m_analysisSchemeNamesHasBeenSet = false;
95
96 bool m_deployed;
97 bool m_deployedHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace CloudSearch
102} // namespace Aws
AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeAnalysisSchemesRequest & AddAnalysisSchemeNames(const char *value)
DescribeAnalysisSchemesRequest & WithDomainName(const char *value)
void SetAnalysisSchemeNames(const Aws::Vector< Aws::String > &value)
const Aws::Vector< Aws::String > & GetAnalysisSchemeNames() const
DescribeAnalysisSchemesRequest & WithAnalysisSchemeNames(Aws::Vector< Aws::String > &&value)
DescribeAnalysisSchemesRequest & WithDomainName(const Aws::String &value)
DescribeAnalysisSchemesRequest & WithAnalysisSchemeNames(const Aws::Vector< Aws::String > &value)
AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override
DescribeAnalysisSchemesRequest & AddAnalysisSchemeNames(const Aws::String &value)
DescribeAnalysisSchemesRequest & WithDomainName(Aws::String &&value)
DescribeAnalysisSchemesRequest & AddAnalysisSchemeNames(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector