AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListGroundStationsRequest.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 ListGroundStationsRequest();
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 "ListGroundStations"; }
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 ListGroundStationsRequest& 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 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
62 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
63 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
64 inline ListGroundStationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
65 inline ListGroundStationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
66 inline ListGroundStationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
68
70
73 inline const Aws::String& GetSatelliteId() const{ return m_satelliteId; }
74 inline bool SatelliteIdHasBeenSet() const { return m_satelliteIdHasBeenSet; }
75 inline void SetSatelliteId(const Aws::String& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = value; }
76 inline void SetSatelliteId(Aws::String&& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = std::move(value); }
77 inline void SetSatelliteId(const char* value) { m_satelliteIdHasBeenSet = true; m_satelliteId.assign(value); }
78 inline ListGroundStationsRequest& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;}
79 inline ListGroundStationsRequest& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;}
80 inline ListGroundStationsRequest& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;}
82 private:
83
84 int m_maxResults;
85 bool m_maxResultsHasBeenSet = false;
86
87 Aws::String m_nextToken;
88 bool m_nextTokenHasBeenSet = false;
89
90 Aws::String m_satelliteId;
91 bool m_satelliteIdHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace GroundStation
96} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_GROUNDSTATION_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListGroundStationsRequest & WithNextToken(const Aws::String &value)
ListGroundStationsRequest & WithNextToken(const char *value)
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
ListGroundStationsRequest & WithSatelliteId(Aws::String &&value)
ListGroundStationsRequest & WithNextToken(Aws::String &&value)
ListGroundStationsRequest & WithSatelliteId(const Aws::String &value)
ListGroundStationsRequest & WithSatelliteId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String