AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
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 template<typename CurrentEphemerisT = EphemerisMetaData>
50 void SetCurrentEphemeris(CurrentEphemerisT&& value) { m_currentEphemerisHasBeenSet = true; m_currentEphemeris = std::forward<CurrentEphemerisT>(value); }
51 template<typename CurrentEphemerisT = EphemerisMetaData>
52 SatelliteListItem& WithCurrentEphemeris(CurrentEphemerisT&& value) { SetCurrentEphemeris(std::forward<CurrentEphemerisT>(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 template<typename GroundStationsT = Aws::Vector<Aws::String>>
62 void SetGroundStations(GroundStationsT&& value) { m_groundStationsHasBeenSet = true; m_groundStations = std::forward<GroundStationsT>(value); }
63 template<typename GroundStationsT = Aws::Vector<Aws::String>>
64 SatelliteListItem& WithGroundStations(GroundStationsT&& value) { SetGroundStations(std::forward<GroundStationsT>(value)); return *this;}
65 template<typename GroundStationsT = Aws::String>
66 SatelliteListItem& AddGroundStations(GroundStationsT&& value) { m_groundStationsHasBeenSet = true; m_groundStations.emplace_back(std::forward<GroundStationsT>(value)); return *this; }
68
70
73 inline int GetNoradSatelliteID() const { return m_noradSatelliteID; }
74 inline bool NoradSatelliteIDHasBeenSet() const { return m_noradSatelliteIDHasBeenSet; }
75 inline void SetNoradSatelliteID(int value) { m_noradSatelliteIDHasBeenSet = true; m_noradSatelliteID = value; }
76 inline SatelliteListItem& WithNoradSatelliteID(int value) { SetNoradSatelliteID(value); return *this;}
78
80
83 inline const Aws::String& GetSatelliteArn() const { return m_satelliteArn; }
84 inline bool SatelliteArnHasBeenSet() const { return m_satelliteArnHasBeenSet; }
85 template<typename SatelliteArnT = Aws::String>
86 void SetSatelliteArn(SatelliteArnT&& value) { m_satelliteArnHasBeenSet = true; m_satelliteArn = std::forward<SatelliteArnT>(value); }
87 template<typename SatelliteArnT = Aws::String>
88 SatelliteListItem& WithSatelliteArn(SatelliteArnT&& value) { SetSatelliteArn(std::forward<SatelliteArnT>(value)); return *this;}
90
92
95 inline const Aws::String& GetSatelliteId() const { return m_satelliteId; }
96 inline bool SatelliteIdHasBeenSet() const { return m_satelliteIdHasBeenSet; }
97 template<typename SatelliteIdT = Aws::String>
98 void SetSatelliteId(SatelliteIdT&& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = std::forward<SatelliteIdT>(value); }
99 template<typename SatelliteIdT = Aws::String>
100 SatelliteListItem& WithSatelliteId(SatelliteIdT&& value) { SetSatelliteId(std::forward<SatelliteIdT>(value)); return *this;}
102 private:
103
104 EphemerisMetaData m_currentEphemeris;
105 bool m_currentEphemerisHasBeenSet = false;
106
107 Aws::Vector<Aws::String> m_groundStations;
108 bool m_groundStationsHasBeenSet = false;
109
110 int m_noradSatelliteID{0};
111 bool m_noradSatelliteIDHasBeenSet = false;
112
113 Aws::String m_satelliteArn;
114 bool m_satelliteArnHasBeenSet = false;
115
116 Aws::String m_satelliteId;
117 bool m_satelliteIdHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace GroundStation
122} // namespace Aws
AWS_GROUNDSTATION_API SatelliteListItem()=default
SatelliteListItem & AddGroundStations(GroundStationsT &&value)
AWS_GROUNDSTATION_API SatelliteListItem & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
void SetCurrentEphemeris(CurrentEphemerisT &&value)
const EphemerisMetaData & GetCurrentEphemeris() const
AWS_GROUNDSTATION_API SatelliteListItem(Aws::Utils::Json::JsonView jsonValue)
void SetGroundStations(GroundStationsT &&value)
SatelliteListItem & WithSatelliteId(SatelliteIdT &&value)
SatelliteListItem & WithSatelliteArn(SatelliteArnT &&value)
const Aws::Vector< Aws::String > & GetGroundStations() const
SatelliteListItem & WithCurrentEphemeris(CurrentEphemerisT &&value)
SatelliteListItem & WithNoradSatelliteID(int value)
SatelliteListItem & WithGroundStations(GroundStationsT &&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