AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SearchImageSetsRequest.h
1
6#pragma once
7#include <aws/medical-imaging/MedicalImaging_EXPORTS.h>
8#include <aws/medical-imaging/MedicalImagingRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/medical-imaging/model/SearchCriteria.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace MedicalImaging
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_MEDICALIMAGING_API SearchImageSetsRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "SearchImageSets"; }
36
37 AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override;
38
39 AWS_MEDICALIMAGING_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetDatastoreId() const{ return m_datastoreId; }
47 inline bool DatastoreIdHasBeenSet() const { return m_datastoreIdHasBeenSet; }
48 inline void SetDatastoreId(const Aws::String& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = value; }
49 inline void SetDatastoreId(Aws::String&& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = std::move(value); }
50 inline void SetDatastoreId(const char* value) { m_datastoreIdHasBeenSet = true; m_datastoreId.assign(value); }
51 inline SearchImageSetsRequest& WithDatastoreId(const Aws::String& value) { SetDatastoreId(value); return *this;}
52 inline SearchImageSetsRequest& WithDatastoreId(Aws::String&& value) { SetDatastoreId(std::move(value)); return *this;}
53 inline SearchImageSetsRequest& WithDatastoreId(const char* value) { SetDatastoreId(value); return *this;}
55
57
61 inline const SearchCriteria& GetSearchCriteria() const{ return m_searchCriteria; }
62 inline bool SearchCriteriaHasBeenSet() const { return m_searchCriteriaHasBeenSet; }
63 inline void SetSearchCriteria(const SearchCriteria& value) { m_searchCriteriaHasBeenSet = true; m_searchCriteria = value; }
64 inline void SetSearchCriteria(SearchCriteria&& value) { m_searchCriteriaHasBeenSet = true; m_searchCriteria = std::move(value); }
65 inline SearchImageSetsRequest& WithSearchCriteria(const SearchCriteria& value) { SetSearchCriteria(value); return *this;}
66 inline SearchImageSetsRequest& WithSearchCriteria(SearchCriteria&& value) { SetSearchCriteria(std::move(value)); return *this;}
68
70
73 inline int GetMaxResults() const{ return m_maxResults; }
74 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
75 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
76 inline SearchImageSetsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
78
80
85 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
86 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
87 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
88 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
89 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
90 inline SearchImageSetsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
91 inline SearchImageSetsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
92 inline SearchImageSetsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
94 private:
95
96 Aws::String m_datastoreId;
97 bool m_datastoreIdHasBeenSet = false;
98
99 SearchCriteria m_searchCriteria;
100 bool m_searchCriteriaHasBeenSet = false;
101
102 int m_maxResults;
103 bool m_maxResultsHasBeenSet = false;
104
105 Aws::String m_nextToken;
106 bool m_nextTokenHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace MedicalImaging
111} // namespace Aws
SearchImageSetsRequest & WithDatastoreId(Aws::String &&value)
AWS_MEDICALIMAGING_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override
SearchImageSetsRequest & WithSearchCriteria(SearchCriteria &&value)
virtual const char * GetServiceRequestName() const override
SearchImageSetsRequest & WithNextToken(const char *value)
SearchImageSetsRequest & WithDatastoreId(const Aws::String &value)
SearchImageSetsRequest & WithNextToken(Aws::String &&value)
SearchImageSetsRequest & WithSearchCriteria(const SearchCriteria &value)
SearchImageSetsRequest & WithNextToken(const Aws::String &value)
SearchImageSetsRequest & WithDatastoreId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String