AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SearchPredefinedAttributesRequest.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/ConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/connect/model/PredefinedAttributeSearchCriteria.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Connect
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "SearchPredefinedAttributes"; }
32
33 AWS_CONNECT_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
42 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
43 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
44 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
45 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
46 inline SearchPredefinedAttributesRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
47 inline SearchPredefinedAttributesRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
48 inline SearchPredefinedAttributesRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
50
52
56 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
57 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
58 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
59 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
60 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
61 inline SearchPredefinedAttributesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
62 inline SearchPredefinedAttributesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
63 inline SearchPredefinedAttributesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
65
67
70 inline int GetMaxResults() const{ return m_maxResults; }
71 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
72 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
73 inline SearchPredefinedAttributesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
75
77
80 inline const PredefinedAttributeSearchCriteria& GetSearchCriteria() const{ return m_searchCriteria; }
81 inline bool SearchCriteriaHasBeenSet() const { return m_searchCriteriaHasBeenSet; }
82 inline void SetSearchCriteria(const PredefinedAttributeSearchCriteria& value) { m_searchCriteriaHasBeenSet = true; m_searchCriteria = value; }
83 inline void SetSearchCriteria(PredefinedAttributeSearchCriteria&& value) { m_searchCriteriaHasBeenSet = true; m_searchCriteria = std::move(value); }
87 private:
88
89 Aws::String m_instanceId;
90 bool m_instanceIdHasBeenSet = false;
91
92 Aws::String m_nextToken;
93 bool m_nextTokenHasBeenSet = false;
94
95 int m_maxResults;
96 bool m_maxResultsHasBeenSet = false;
97
98 PredefinedAttributeSearchCriteria m_searchCriteria;
99 bool m_searchCriteriaHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace Connect
104} // namespace Aws
SearchPredefinedAttributesRequest & WithInstanceId(Aws::String &&value)
AWS_CONNECT_API Aws::String SerializePayload() const override
SearchPredefinedAttributesRequest & WithMaxResults(int value)
SearchPredefinedAttributesRequest & WithInstanceId(const Aws::String &value)
SearchPredefinedAttributesRequest & WithSearchCriteria(PredefinedAttributeSearchCriteria &&value)
void SetSearchCriteria(PredefinedAttributeSearchCriteria &&value)
SearchPredefinedAttributesRequest & WithInstanceId(const char *value)
void SetSearchCriteria(const PredefinedAttributeSearchCriteria &value)
SearchPredefinedAttributesRequest & WithNextToken(const Aws::String &value)
SearchPredefinedAttributesRequest & WithNextToken(Aws::String &&value)
const PredefinedAttributeSearchCriteria & GetSearchCriteria() const
SearchPredefinedAttributesRequest & WithNextToken(const char *value)
SearchPredefinedAttributesRequest & WithSearchCriteria(const PredefinedAttributeSearchCriteria &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String