AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
SearchRelatedItemsRequest.h
1
6#pragma once
7#include <aws/connectcases/ConnectCases_EXPORTS.h>
8#include <aws/connectcases/ConnectCasesRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/connectcases/model/RelatedItemTypeFilter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ConnectCases
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CONNECTCASES_API SearchRelatedItemsRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "SearchRelatedItems"; }
33
34 AWS_CONNECTCASES_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetCaseId() const { return m_caseId; }
42 inline bool CaseIdHasBeenSet() const { return m_caseIdHasBeenSet; }
43 template<typename CaseIdT = Aws::String>
44 void SetCaseId(CaseIdT&& value) { m_caseIdHasBeenSet = true; m_caseId = std::forward<CaseIdT>(value); }
45 template<typename CaseIdT = Aws::String>
46 SearchRelatedItemsRequest& WithCaseId(CaseIdT&& value) { SetCaseId(std::forward<CaseIdT>(value)); return *this;}
48
50
53 inline const Aws::String& GetDomainId() const { return m_domainId; }
54 inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; }
55 template<typename DomainIdT = Aws::String>
56 void SetDomainId(DomainIdT&& value) { m_domainIdHasBeenSet = true; m_domainId = std::forward<DomainIdT>(value); }
57 template<typename DomainIdT = Aws::String>
58 SearchRelatedItemsRequest& WithDomainId(DomainIdT&& value) { SetDomainId(std::forward<DomainIdT>(value)); return *this;}
60
62
66 inline const Aws::Vector<RelatedItemTypeFilter>& GetFilters() const { return m_filters; }
67 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
68 template<typename FiltersT = Aws::Vector<RelatedItemTypeFilter>>
69 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
70 template<typename FiltersT = Aws::Vector<RelatedItemTypeFilter>>
71 SearchRelatedItemsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
72 template<typename FiltersT = RelatedItemTypeFilter>
73 SearchRelatedItemsRequest& AddFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters.emplace_back(std::forward<FiltersT>(value)); return *this; }
75
77
80 inline int GetMaxResults() const { return m_maxResults; }
81 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
82 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
83 inline SearchRelatedItemsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
85
87
91 inline const Aws::String& GetNextToken() const { return m_nextToken; }
92 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
93 template<typename NextTokenT = Aws::String>
94 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
95 template<typename NextTokenT = Aws::String>
96 SearchRelatedItemsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
98 private:
99
100 Aws::String m_caseId;
101 bool m_caseIdHasBeenSet = false;
102
103 Aws::String m_domainId;
104 bool m_domainIdHasBeenSet = false;
105
107 bool m_filtersHasBeenSet = false;
108
109 int m_maxResults{0};
110 bool m_maxResultsHasBeenSet = false;
111
112 Aws::String m_nextToken;
113 bool m_nextTokenHasBeenSet = false;
114 };
115
116} // namespace Model
117} // namespace ConnectCases
118} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector