AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListAdaptersRequest.h
1
6#pragma once
7#include <aws/textract/Textract_EXPORTS.h>
8#include <aws/textract/TextractRequest.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Textract
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_TEXTRACT_API ListAdaptersRequest() = default;
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 "ListAdapters"; }
32
33 AWS_TEXTRACT_API Aws::String SerializePayload() const override;
34
36
37
39
44 inline const Aws::Utils::DateTime& GetAfterCreationTime() const { return m_afterCreationTime; }
45 inline bool AfterCreationTimeHasBeenSet() const { return m_afterCreationTimeHasBeenSet; }
46 template<typename AfterCreationTimeT = Aws::Utils::DateTime>
47 void SetAfterCreationTime(AfterCreationTimeT&& value) { m_afterCreationTimeHasBeenSet = true; m_afterCreationTime = std::forward<AfterCreationTimeT>(value); }
48 template<typename AfterCreationTimeT = Aws::Utils::DateTime>
49 ListAdaptersRequest& WithAfterCreationTime(AfterCreationTimeT&& value) { SetAfterCreationTime(std::forward<AfterCreationTimeT>(value)); return *this;}
51
53
58 inline const Aws::Utils::DateTime& GetBeforeCreationTime() const { return m_beforeCreationTime; }
59 inline bool BeforeCreationTimeHasBeenSet() const { return m_beforeCreationTimeHasBeenSet; }
60 template<typename BeforeCreationTimeT = Aws::Utils::DateTime>
61 void SetBeforeCreationTime(BeforeCreationTimeT&& value) { m_beforeCreationTimeHasBeenSet = true; m_beforeCreationTime = std::forward<BeforeCreationTimeT>(value); }
62 template<typename BeforeCreationTimeT = Aws::Utils::DateTime>
63 ListAdaptersRequest& WithBeforeCreationTime(BeforeCreationTimeT&& value) { SetBeforeCreationTime(std::forward<BeforeCreationTimeT>(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 ListAdaptersRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
75
77
80 inline const Aws::String& GetNextToken() const { return m_nextToken; }
81 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
82 template<typename NextTokenT = Aws::String>
83 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
84 template<typename NextTokenT = Aws::String>
85 ListAdaptersRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
87 private:
88
89 Aws::Utils::DateTime m_afterCreationTime{};
90 bool m_afterCreationTimeHasBeenSet = false;
91
92 Aws::Utils::DateTime m_beforeCreationTime{};
93 bool m_beforeCreationTimeHasBeenSet = false;
94
95 int m_maxResults{0};
96 bool m_maxResultsHasBeenSet = false;
97
98 Aws::String m_nextToken;
99 bool m_nextTokenHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace Textract
104} // namespace Aws
ListAdaptersRequest & WithAfterCreationTime(AfterCreationTimeT &&value)
AWS_TEXTRACT_API ListAdaptersRequest()=default
const Aws::Utils::DateTime & GetAfterCreationTime() const
AWS_TEXTRACT_API Aws::String SerializePayload() const override
void SetAfterCreationTime(AfterCreationTimeT &&value)
virtual const char * GetServiceRequestName() const override
ListAdaptersRequest & WithBeforeCreationTime(BeforeCreationTimeT &&value)
ListAdaptersRequest & WithNextToken(NextTokenT &&value)
AWS_TEXTRACT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
const Aws::Utils::DateTime & GetBeforeCreationTime() const
void SetBeforeCreationTime(BeforeCreationTimeT &&value)
ListAdaptersRequest & WithMaxResults(int value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String