AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DefineIndexFieldRequest.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/IndexField.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CloudSearch
16{
17namespace Model
18{
19
28 {
29 public:
30 AWS_CLOUDSEARCH_API DefineIndexFieldRequest() = default;
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 "DefineIndexField"; }
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 template<typename DomainNameT = Aws::String>
50 void SetDomainName(DomainNameT&& value) { m_domainNameHasBeenSet = true; m_domainName = std::forward<DomainNameT>(value); }
51 template<typename DomainNameT = Aws::String>
52 DefineIndexFieldRequest& WithDomainName(DomainNameT&& value) { SetDomainName(std::forward<DomainNameT>(value)); return *this;}
54
56
59 inline const IndexField& GetIndexField() const { return m_indexField; }
60 inline bool IndexFieldHasBeenSet() const { return m_indexFieldHasBeenSet; }
61 template<typename IndexFieldT = IndexField>
62 void SetIndexField(IndexFieldT&& value) { m_indexFieldHasBeenSet = true; m_indexField = std::forward<IndexFieldT>(value); }
63 template<typename IndexFieldT = IndexField>
64 DefineIndexFieldRequest& WithIndexField(IndexFieldT&& value) { SetIndexField(std::forward<IndexFieldT>(value)); return *this;}
66 private:
67
68 Aws::String m_domainName;
69 bool m_domainNameHasBeenSet = false;
70
71 IndexField m_indexField;
72 bool m_indexFieldHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace CloudSearch
77} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override
DefineIndexFieldRequest & WithIndexField(IndexFieldT &&value)
DefineIndexFieldRequest & WithDomainName(DomainNameT &&value)
AWS_CLOUDSEARCH_API DefineIndexFieldRequest()=default
AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String