AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeExpressionsRequest.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
31 {
32 public:
33 AWS_CLOUDSEARCH_API DescribeExpressionsRequest();
34
35 // Service request name is the Operation name which will send this request out,
36 // each operation should has unique request name, so that we can get operation's name from this request.
37 // Note: this is not true for response, multiple operations may have the same response name,
38 // so we can not get operation's name from response.
39 inline virtual const char* GetServiceRequestName() const override { return "DescribeExpressions"; }
40
41 AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override;
42
43 protected:
44 AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
45
46 public:
47
49
52 inline const Aws::String& GetDomainName() const{ return m_domainName; }
53 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
54 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
55 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
56 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
57 inline DescribeExpressionsRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
58 inline DescribeExpressionsRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
59 inline DescribeExpressionsRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;}
61
63
67 inline const Aws::Vector<Aws::String>& GetExpressionNames() const{ return m_expressionNames; }
68 inline bool ExpressionNamesHasBeenSet() const { return m_expressionNamesHasBeenSet; }
69 inline void SetExpressionNames(const Aws::Vector<Aws::String>& value) { m_expressionNamesHasBeenSet = true; m_expressionNames = value; }
70 inline void SetExpressionNames(Aws::Vector<Aws::String>&& value) { m_expressionNamesHasBeenSet = true; m_expressionNames = std::move(value); }
73 inline DescribeExpressionsRequest& AddExpressionNames(const Aws::String& value) { m_expressionNamesHasBeenSet = true; m_expressionNames.push_back(value); return *this; }
74 inline DescribeExpressionsRequest& AddExpressionNames(Aws::String&& value) { m_expressionNamesHasBeenSet = true; m_expressionNames.push_back(std::move(value)); return *this; }
75 inline DescribeExpressionsRequest& AddExpressionNames(const char* value) { m_expressionNamesHasBeenSet = true; m_expressionNames.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 DescribeExpressionsRequest& 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_expressionNames;
94 bool m_expressionNamesHasBeenSet = false;
95
96 bool m_deployed;
97 bool m_deployedHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace CloudSearch
102} // namespace Aws
virtual const char * GetServiceRequestName() const override
DescribeExpressionsRequest & WithDomainName(const Aws::String &value)
DescribeExpressionsRequest & WithDomainName(const char *value)
DescribeExpressionsRequest & AddExpressionNames(Aws::String &&value)
DescribeExpressionsRequest & WithDeployed(bool value)
DescribeExpressionsRequest & WithDomainName(Aws::String &&value)
const Aws::Vector< Aws::String > & GetExpressionNames() const
AWS_CLOUDSEARCH_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeExpressionsRequest & AddExpressionNames(const char *value)
DescribeExpressionsRequest & WithExpressionNames(Aws::Vector< Aws::String > &&value)
void SetExpressionNames(const Aws::Vector< Aws::String > &value)
DescribeExpressionsRequest & WithExpressionNames(const Aws::Vector< Aws::String > &value)
void SetExpressionNames(Aws::Vector< Aws::String > &&value)
AWS_CLOUDSEARCH_API Aws::String SerializePayload() const override
DescribeExpressionsRequest & AddExpressionNames(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector