AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListExportsRequest.h
1
6#pragma once
7#include <aws/mgn/Mgn_EXPORTS.h>
8#include <aws/mgn/MgnRequest.h>
9#include <aws/mgn/model/ListExportsRequestFilters.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace mgn
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_MGN_API ListExportsRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "ListExports"; }
35
36 AWS_MGN_API Aws::String SerializePayload() const override;
37
38
40
41 inline const ListExportsRequestFilters& GetFilters() const { return m_filters; }
42 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
43 template<typename FiltersT = ListExportsRequestFilters>
44 void SetFilters(FiltersT&& value) { m_filtersHasBeenSet = true; m_filters = std::forward<FiltersT>(value); }
45 template<typename FiltersT = ListExportsRequestFilters>
46 ListExportsRequest& WithFilters(FiltersT&& value) { SetFilters(std::forward<FiltersT>(value)); return *this;}
48
50
53 inline int GetMaxResults() const { return m_maxResults; }
54 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
55 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
56 inline ListExportsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
58
60
63 inline const Aws::String& GetNextToken() const { return m_nextToken; }
64 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
65 template<typename NextTokenT = Aws::String>
66 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
67 template<typename NextTokenT = Aws::String>
68 ListExportsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
70 private:
71
73 bool m_filtersHasBeenSet = false;
74
75 int m_maxResults{0};
76 bool m_maxResultsHasBeenSet = false;
77
78 Aws::String m_nextToken;
79 bool m_nextTokenHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace mgn
84} // namespace Aws
ListExportsRequest & WithMaxResults(int value)
ListExportsRequest & WithFilters(FiltersT &&value)
void SetNextToken(NextTokenT &&value)
const ListExportsRequestFilters & GetFilters() const
AWS_MGN_API ListExportsRequest()=default
ListExportsRequest & WithNextToken(NextTokenT &&value)
const Aws::String & GetNextToken() const
AWS_MGN_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String