AWS SDK for C++

AWS SDK for C++ Version 1.11.686

Loading...
Searching...
No Matches
AzElEphemeris.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/groundstation/GroundStation_EXPORTS.h>
9#include <aws/groundstation/model/AzElSegmentsData.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace GroundStation {
21namespace Model {
22
42 public:
43 AWS_GROUNDSTATION_API AzElEphemeris() = default;
44 AWS_GROUNDSTATION_API AzElEphemeris(Aws::Utils::Json::JsonView jsonValue);
45 AWS_GROUNDSTATION_API AzElEphemeris& operator=(Aws::Utils::Json::JsonView jsonValue);
46 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
47
49
54 inline const Aws::String& GetGroundStation() const { return m_groundStation; }
55 inline bool GroundStationHasBeenSet() const { return m_groundStationHasBeenSet; }
56 template <typename GroundStationT = Aws::String>
57 void SetGroundStation(GroundStationT&& value) {
58 m_groundStationHasBeenSet = true;
59 m_groundStation = std::forward<GroundStationT>(value);
60 }
61 template <typename GroundStationT = Aws::String>
62 AzElEphemeris& WithGroundStation(GroundStationT&& value) {
63 SetGroundStation(std::forward<GroundStationT>(value));
64 return *this;
65 }
67
69
73 inline const AzElSegmentsData& GetData() const { return m_data; }
74 inline bool DataHasBeenSet() const { return m_dataHasBeenSet; }
75 template <typename DataT = AzElSegmentsData>
76 void SetData(DataT&& value) {
77 m_dataHasBeenSet = true;
78 m_data = std::forward<DataT>(value);
79 }
80 template <typename DataT = AzElSegmentsData>
81 AzElEphemeris& WithData(DataT&& value) {
82 SetData(std::forward<DataT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_groundStation;
88 bool m_groundStationHasBeenSet = false;
89
90 AzElSegmentsData m_data;
91 bool m_dataHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace GroundStation
96} // namespace Aws
const Aws::String & GetGroundStation() const
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
AzElEphemeris & WithGroundStation(GroundStationT &&value)
AzElEphemeris & WithData(DataT &&value)
AWS_GROUNDSTATION_API AzElEphemeris & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API AzElEphemeris()=default
AWS_GROUNDSTATION_API AzElEphemeris(Aws::Utils::Json::JsonView jsonValue)
void SetGroundStation(GroundStationT &&value)
const AzElSegmentsData & GetData() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue