AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SatelliteListItem.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/EphemerisMetaData.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace GroundStation
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_GROUNDSTATION_API SatelliteListItem();
37 AWS_GROUNDSTATION_API SatelliteListItem(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GROUNDSTATION_API SatelliteListItem& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const EphemerisMetaData& GetCurrentEphemeris() const{ return m_currentEphemeris; }
48 inline bool CurrentEphemerisHasBeenSet() const { return m_currentEphemerisHasBeenSet; }
49 inline void SetCurrentEphemeris(const EphemerisMetaData& value) { m_currentEphemerisHasBeenSet = true; m_currentEphemeris = value; }
50 inline void SetCurrentEphemeris(EphemerisMetaData&& value) { m_currentEphemerisHasBeenSet = true; m_currentEphemeris = std::move(value); }
51 inline SatelliteListItem& WithCurrentEphemeris(const EphemerisMetaData& value) { SetCurrentEphemeris(value); return *this;}
52 inline SatelliteListItem& WithCurrentEphemeris(EphemerisMetaData&& value) { SetCurrentEphemeris(std::move(value)); return *this;}
54
56
59 inline const Aws::Vector<Aws::String>& GetGroundStations() const{ return m_groundStations; }
60 inline bool GroundStationsHasBeenSet() const { return m_groundStationsHasBeenSet; }
61 inline void SetGroundStations(const Aws::Vector<Aws::String>& value) { m_groundStationsHasBeenSet = true; m_groundStations = value; }
62 inline void SetGroundStations(Aws::Vector<Aws::String>&& value) { m_groundStationsHasBeenSet = true; m_groundStations = std::move(value); }
64 inline SatelliteListItem& WithGroundStations(Aws::Vector<Aws::String>&& value) { SetGroundStations(std::move(value)); return *this;}
65 inline SatelliteListItem& AddGroundStations(const Aws::String& value) { m_groundStationsHasBeenSet = true; m_groundStations.push_back(value); return *this; }
66 inline SatelliteListItem& AddGroundStations(Aws::String&& value) { m_groundStationsHasBeenSet = true; m_groundStations.push_back(std::move(value)); return *this; }
67 inline SatelliteListItem& AddGroundStations(const char* value) { m_groundStationsHasBeenSet = true; m_groundStations.push_back(value); return *this; }
69
71
74 inline int GetNoradSatelliteID() const{ return m_noradSatelliteID; }
75 inline bool NoradSatelliteIDHasBeenSet() const { return m_noradSatelliteIDHasBeenSet; }
76 inline void SetNoradSatelliteID(int value) { m_noradSatelliteIDHasBeenSet = true; m_noradSatelliteID = value; }
77 inline SatelliteListItem& WithNoradSatelliteID(int value) { SetNoradSatelliteID(value); return *this;}
79
81
84 inline const Aws::String& GetSatelliteArn() const{ return m_satelliteArn; }
85 inline bool SatelliteArnHasBeenSet() const { return m_satelliteArnHasBeenSet; }
86 inline void SetSatelliteArn(const Aws::String& value) { m_satelliteArnHasBeenSet = true; m_satelliteArn = value; }
87 inline void SetSatelliteArn(Aws::String&& value) { m_satelliteArnHasBeenSet = true; m_satelliteArn = std::move(value); }
88 inline void SetSatelliteArn(const char* value) { m_satelliteArnHasBeenSet = true; m_satelliteArn.assign(value); }
89 inline SatelliteListItem& WithSatelliteArn(const Aws::String& value) { SetSatelliteArn(value); return *this;}
90 inline SatelliteListItem& WithSatelliteArn(Aws::String&& value) { SetSatelliteArn(std::move(value)); return *this;}
91 inline SatelliteListItem& WithSatelliteArn(const char* value) { SetSatelliteArn(value); return *this;}
93
95
98 inline const Aws::String& GetSatelliteId() const{ return m_satelliteId; }
99 inline bool SatelliteIdHasBeenSet() const { return m_satelliteIdHasBeenSet; }
100 inline void SetSatelliteId(const Aws::String& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = value; }
101 inline void SetSatelliteId(Aws::String&& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = std::move(value); }
102 inline void SetSatelliteId(const char* value) { m_satelliteIdHasBeenSet = true; m_satelliteId.assign(value); }
103 inline SatelliteListItem& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;}
104 inline SatelliteListItem& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;}
105 inline SatelliteListItem& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;}
107 private:
108
109 EphemerisMetaData m_currentEphemeris;
110 bool m_currentEphemerisHasBeenSet = false;
111
112 Aws::Vector<Aws::String> m_groundStations;
113 bool m_groundStationsHasBeenSet = false;
114
115 int m_noradSatelliteID;
116 bool m_noradSatelliteIDHasBeenSet = false;
117
118 Aws::String m_satelliteArn;
119 bool m_satelliteArnHasBeenSet = false;
120
121 Aws::String m_satelliteId;
122 bool m_satelliteIdHasBeenSet = false;
123 };
124
125} // namespace Model
126} // namespace GroundStation
127} // namespace Aws
void SetSatelliteId(const Aws::String &value)
SatelliteListItem & AddGroundStations(Aws::String &&value)
AWS_GROUNDSTATION_API SatelliteListItem & operator=(Aws::Utils::Json::JsonView jsonValue)
SatelliteListItem & WithGroundStations(Aws::Vector< Aws::String > &&value)
SatelliteListItem & WithSatelliteArn(const Aws::String &value)
SatelliteListItem & AddGroundStations(const char *value)
void SetGroundStations(const Aws::Vector< Aws::String > &value)
SatelliteListItem & WithSatelliteArn(Aws::String &&value)
SatelliteListItem & WithCurrentEphemeris(const EphemerisMetaData &value)
void SetCurrentEphemeris(const EphemerisMetaData &value)
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
SatelliteListItem & WithCurrentEphemeris(EphemerisMetaData &&value)
const EphemerisMetaData & GetCurrentEphemeris() const
SatelliteListItem & WithGroundStations(const Aws::Vector< Aws::String > &value)
AWS_GROUNDSTATION_API SatelliteListItem(Aws::Utils::Json::JsonView jsonValue)
void SetSatelliteArn(const Aws::String &value)
SatelliteListItem & AddGroundStations(const Aws::String &value)
void SetCurrentEphemeris(EphemerisMetaData &&value)
SatelliteListItem & WithSatelliteId(Aws::String &&value)
const Aws::Vector< Aws::String > & GetGroundStations() const
SatelliteListItem & WithSatelliteId(const Aws::String &value)
SatelliteListItem & WithNoradSatelliteID(int value)
void SetGroundStations(Aws::Vector< Aws::String > &&value)
SatelliteListItem & WithSatelliteArn(const char *value)
SatelliteListItem & WithSatelliteId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue