AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DefineAnalysisSchemeRequest.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/cloudsearch/model/AnalysisScheme.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CloudSearch
16{
17namespace Model
18{
19
28 {
29 public:
30 AWS_CLOUDSEARCH_API DefineAnalysisSchemeRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "DefineAnalysisScheme"; }
37
38 AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override;
39
40 protected:
41 AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
42
43 public:
44
46
47 inline const Aws::String& GetDomainName() const{ return m_domainName; }
48 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
49 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
50 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
51 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
52 inline DefineAnalysisSchemeRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
53 inline DefineAnalysisSchemeRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
54 inline DefineAnalysisSchemeRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;}
56
58
59 inline const AnalysisScheme& GetAnalysisScheme() const{ return m_analysisScheme; }
60 inline bool AnalysisSchemeHasBeenSet() const { return m_analysisSchemeHasBeenSet; }
61 inline void SetAnalysisScheme(const AnalysisScheme& value) { m_analysisSchemeHasBeenSet = true; m_analysisScheme = value; }
62 inline void SetAnalysisScheme(AnalysisScheme&& value) { m_analysisSchemeHasBeenSet = true; m_analysisScheme = std::move(value); }
64 inline DefineAnalysisSchemeRequest& WithAnalysisScheme(AnalysisScheme&& value) { SetAnalysisScheme(std::move(value)); return *this;}
66 private:
67
68 Aws::String m_domainName;
69 bool m_domainNameHasBeenSet = false;
70
71 AnalysisScheme m_analysisScheme;
72 bool m_analysisSchemeHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace CloudSearch
77} // namespace Aws
DefineAnalysisSchemeRequest & WithAnalysisScheme(AnalysisScheme &&value)
DefineAnalysisSchemeRequest & WithDomainName(const char *value)
DefineAnalysisSchemeRequest & WithDomainName(const Aws::String &value)
DefineAnalysisSchemeRequest & WithAnalysisScheme(const AnalysisScheme &value)
AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override
DefineAnalysisSchemeRequest & WithDomainName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String