AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
TLEEphemeris.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/S3Object.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/groundstation/model/TLEData.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 TLEEphemeris() = default;
37 AWS_GROUNDSTATION_API TLEEphemeris(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GROUNDSTATION_API TLEEphemeris& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const S3Object& GetS3Object() const { return m_s3Object; }
47 inline bool S3ObjectHasBeenSet() const { return m_s3ObjectHasBeenSet; }
48 template<typename S3ObjectT = S3Object>
49 void SetS3Object(S3ObjectT&& value) { m_s3ObjectHasBeenSet = true; m_s3Object = std::forward<S3ObjectT>(value); }
50 template<typename S3ObjectT = S3Object>
51 TLEEphemeris& WithS3Object(S3ObjectT&& value) { SetS3Object(std::forward<S3ObjectT>(value)); return *this;}
53
55
59 inline const Aws::Vector<TLEData>& GetTleData() const { return m_tleData; }
60 inline bool TleDataHasBeenSet() const { return m_tleDataHasBeenSet; }
61 template<typename TleDataT = Aws::Vector<TLEData>>
62 void SetTleData(TleDataT&& value) { m_tleDataHasBeenSet = true; m_tleData = std::forward<TleDataT>(value); }
63 template<typename TleDataT = Aws::Vector<TLEData>>
64 TLEEphemeris& WithTleData(TleDataT&& value) { SetTleData(std::forward<TleDataT>(value)); return *this;}
65 template<typename TleDataT = TLEData>
66 TLEEphemeris& AddTleData(TleDataT&& value) { m_tleDataHasBeenSet = true; m_tleData.emplace_back(std::forward<TleDataT>(value)); return *this; }
68 private:
69
70 S3Object m_s3Object;
71 bool m_s3ObjectHasBeenSet = false;
72
73 Aws::Vector<TLEData> m_tleData;
74 bool m_tleDataHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace GroundStation
79} // namespace Aws
AWS_GROUNDSTATION_API TLEEphemeris & operator=(Aws::Utils::Json::JsonView jsonValue)
TLEEphemeris & AddTleData(TleDataT &&value)
TLEEphemeris & WithS3Object(S3ObjectT &&value)
AWS_GROUNDSTATION_API TLEEphemeris()=default
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::Vector< TLEData > & GetTleData() const
const S3Object & GetS3Object() const
AWS_GROUNDSTATION_API TLEEphemeris(Aws::Utils::Json::JsonView jsonValue)
void SetS3Object(S3ObjectT &&value)
TLEEphemeris & WithTleData(TleDataT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue