AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetS3Object(const S3Object& value) { m_s3ObjectHasBeenSet = true; m_s3Object = value; }
49 inline void SetS3Object(S3Object&& value) { m_s3ObjectHasBeenSet = true; m_s3Object = std::move(value); }
50 inline TLEEphemeris& WithS3Object(const S3Object& value) { SetS3Object(value); return *this;}
51 inline TLEEphemeris& WithS3Object(S3Object&& value) { SetS3Object(std::move(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 inline void SetTleData(const Aws::Vector<TLEData>& value) { m_tleDataHasBeenSet = true; m_tleData = value; }
62 inline void SetTleData(Aws::Vector<TLEData>&& value) { m_tleDataHasBeenSet = true; m_tleData = std::move(value); }
63 inline TLEEphemeris& WithTleData(const Aws::Vector<TLEData>& value) { SetTleData(value); return *this;}
64 inline TLEEphemeris& WithTleData(Aws::Vector<TLEData>&& value) { SetTleData(std::move(value)); return *this;}
65 inline TLEEphemeris& AddTleData(const TLEData& value) { m_tleDataHasBeenSet = true; m_tleData.push_back(value); return *this; }
66 inline TLEEphemeris& AddTleData(TLEData&& value) { m_tleDataHasBeenSet = true; m_tleData.push_back(std::move(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 & WithTleData(const Aws::Vector< TLEData > &value)
void SetTleData(Aws::Vector< TLEData > &&value)
TLEEphemeris & AddTleData(TLEData &&value)
TLEEphemeris & WithS3Object(S3Object &&value)
void SetTleData(const Aws::Vector< TLEData > &value)
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(const S3Object &value)
TLEEphemeris & WithS3Object(const S3Object &value)
AWS_GROUNDSTATION_API TLEEphemeris()
TLEEphemeris & WithTleData(Aws::Vector< TLEData > &&value)
TLEEphemeris & AddTleData(const TLEData &value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue