AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
EphemerisDescription.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/S3Object.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
29 public:
30 AWS_GROUNDSTATION_API EphemerisDescription() = default;
31 AWS_GROUNDSTATION_API EphemerisDescription(Aws::Utils::Json::JsonView jsonValue);
33 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const S3Object& GetSourceS3Object() const { return m_sourceS3Object; }
40 inline bool SourceS3ObjectHasBeenSet() const { return m_sourceS3ObjectHasBeenSet; }
41 template <typename SourceS3ObjectT = S3Object>
42 void SetSourceS3Object(SourceS3ObjectT&& value) {
43 m_sourceS3ObjectHasBeenSet = true;
44 m_sourceS3Object = std::forward<SourceS3ObjectT>(value);
45 }
46 template <typename SourceS3ObjectT = S3Object>
47 EphemerisDescription& WithSourceS3Object(SourceS3ObjectT&& value) {
48 SetSourceS3Object(std::forward<SourceS3ObjectT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetEphemerisData() const { return m_ephemerisData; }
58 inline bool EphemerisDataHasBeenSet() const { return m_ephemerisDataHasBeenSet; }
59 template <typename EphemerisDataT = Aws::String>
60 void SetEphemerisData(EphemerisDataT&& value) {
61 m_ephemerisDataHasBeenSet = true;
62 m_ephemerisData = std::forward<EphemerisDataT>(value);
63 }
64 template <typename EphemerisDataT = Aws::String>
65 EphemerisDescription& WithEphemerisData(EphemerisDataT&& value) {
66 SetEphemerisData(std::forward<EphemerisDataT>(value));
67 return *this;
68 }
70 private:
71 S3Object m_sourceS3Object;
72 bool m_sourceS3ObjectHasBeenSet = false;
73
74 Aws::String m_ephemerisData;
75 bool m_ephemerisDataHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace GroundStation
80} // namespace Aws
EphemerisDescription & WithEphemerisData(EphemerisDataT &&value)
AWS_GROUNDSTATION_API EphemerisDescription(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API EphemerisDescription()=default
AWS_GROUNDSTATION_API EphemerisDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
EphemerisDescription & WithSourceS3Object(SourceS3ObjectT &&value)
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue