AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListConfigsRequest.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/GroundStationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace GroundStation
19{
20namespace Model
21{
22
29 {
30 public:
31 AWS_GROUNDSTATION_API ListConfigsRequest() = default;
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "ListConfigs"; }
38
39 AWS_GROUNDSTATION_API Aws::String SerializePayload() const override;
40
41 AWS_GROUNDSTATION_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42
43
45
48 inline int GetMaxResults() const { return m_maxResults; }
49 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
50 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
51 inline ListConfigsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
53
55
59 inline const Aws::String& GetNextToken() const { return m_nextToken; }
60 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
61 template<typename NextTokenT = Aws::String>
62 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
63 template<typename NextTokenT = Aws::String>
64 ListConfigsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
66 private:
67
68 int m_maxResults{0};
69 bool m_maxResultsHasBeenSet = false;
70
71 Aws::String m_nextToken;
72 bool m_nextTokenHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace GroundStation
77} // namespace Aws
ListConfigsRequest & WithMaxResults(int value)
virtual const char * GetServiceRequestName() const override
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
AWS_GROUNDSTATION_API ListConfigsRequest()=default
ListConfigsRequest & WithNextToken(NextTokenT &&value)
AWS_GROUNDSTATION_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String