AWS SDK for C++

AWS SDK for C++ Version 1.11.740

Loading...
Searching...
No Matches
EphemerisData.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/AzElEphemeris.h>
9#include <aws/groundstation/model/OEMEphemeris.h>
10#include <aws/groundstation/model/TLEEphemeris.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace GroundStation {
22namespace Model {
23
30 public:
31 AWS_GROUNDSTATION_API EphemerisData() = default;
32 AWS_GROUNDSTATION_API EphemerisData(Aws::Utils::Json::JsonView jsonValue);
33 AWS_GROUNDSTATION_API EphemerisData& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
38 inline const TLEEphemeris& GetTle() const { return m_tle; }
39 inline bool TleHasBeenSet() const { return m_tleHasBeenSet; }
40 template <typename TleT = TLEEphemeris>
41 void SetTle(TleT&& value) {
42 m_tleHasBeenSet = true;
43 m_tle = std::forward<TleT>(value);
44 }
45 template <typename TleT = TLEEphemeris>
46 EphemerisData& WithTle(TleT&& value) {
47 SetTle(std::forward<TleT>(value));
48 return *this;
49 }
51
53
54 inline const OEMEphemeris& GetOem() const { return m_oem; }
55 inline bool OemHasBeenSet() const { return m_oemHasBeenSet; }
56 template <typename OemT = OEMEphemeris>
57 void SetOem(OemT&& value) {
58 m_oemHasBeenSet = true;
59 m_oem = std::forward<OemT>(value);
60 }
61 template <typename OemT = OEMEphemeris>
62 EphemerisData& WithOem(OemT&& value) {
63 SetOem(std::forward<OemT>(value));
64 return *this;
65 }
67
69
70 inline const AzElEphemeris& GetAzEl() const { return m_azEl; }
71 inline bool AzElHasBeenSet() const { return m_azElHasBeenSet; }
72 template <typename AzElT = AzElEphemeris>
73 void SetAzEl(AzElT&& value) {
74 m_azElHasBeenSet = true;
75 m_azEl = std::forward<AzElT>(value);
76 }
77 template <typename AzElT = AzElEphemeris>
78 EphemerisData& WithAzEl(AzElT&& value) {
79 SetAzEl(std::forward<AzElT>(value));
80 return *this;
81 }
83 private:
84 TLEEphemeris m_tle;
85
86 OEMEphemeris m_oem;
87
88 AzElEphemeris m_azEl;
89 bool m_tleHasBeenSet = false;
90 bool m_oemHasBeenSet = false;
91 bool m_azElHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace GroundStation
96} // namespace Aws
AWS_GROUNDSTATION_API EphemerisData()=default
const TLEEphemeris & GetTle() const
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
EphemerisData & WithAzEl(AzElT &&value)
const AzElEphemeris & GetAzEl() const
AWS_GROUNDSTATION_API EphemerisData & operator=(Aws::Utils::Json::JsonView jsonValue)
const OEMEphemeris & GetOem() const
AWS_GROUNDSTATION_API EphemerisData(Aws::Utils::Json::JsonView jsonValue)
EphemerisData & WithOem(OemT &&value)
EphemerisData & WithTle(TleT &&value)
Aws::Utils::Json::JsonValue JsonValue