/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

Description of ephemeris.

See Also:

AWS * API Reference

*/ class EphemerisDescription { public: AWS_GROUNDSTATION_API EphemerisDescription(); AWS_GROUNDSTATION_API EphemerisDescription(Aws::Utils::Json::JsonView jsonValue); AWS_GROUNDSTATION_API EphemerisDescription& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Supplied ephemeris data.

*/ inline const Aws::String& GetEphemerisData() const{ return m_ephemerisData; } /** *

Supplied ephemeris data.

*/ inline bool EphemerisDataHasBeenSet() const { return m_ephemerisDataHasBeenSet; } /** *

Supplied ephemeris data.

*/ inline void SetEphemerisData(const Aws::String& value) { m_ephemerisDataHasBeenSet = true; m_ephemerisData = value; } /** *

Supplied ephemeris data.

*/ inline void SetEphemerisData(Aws::String&& value) { m_ephemerisDataHasBeenSet = true; m_ephemerisData = std::move(value); } /** *

Supplied ephemeris data.

*/ inline void SetEphemerisData(const char* value) { m_ephemerisDataHasBeenSet = true; m_ephemerisData.assign(value); } /** *

Supplied ephemeris data.

*/ inline EphemerisDescription& WithEphemerisData(const Aws::String& value) { SetEphemerisData(value); return *this;} /** *

Supplied ephemeris data.

*/ inline EphemerisDescription& WithEphemerisData(Aws::String&& value) { SetEphemerisData(std::move(value)); return *this;} /** *

Supplied ephemeris data.

*/ inline EphemerisDescription& WithEphemerisData(const char* value) { SetEphemerisData(value); return *this;} /** *

Source S3 object used for the ephemeris.

*/ inline const S3Object& GetSourceS3Object() const{ return m_sourceS3Object; } /** *

Source S3 object used for the ephemeris.

*/ inline bool SourceS3ObjectHasBeenSet() const { return m_sourceS3ObjectHasBeenSet; } /** *

Source S3 object used for the ephemeris.

*/ inline void SetSourceS3Object(const S3Object& value) { m_sourceS3ObjectHasBeenSet = true; m_sourceS3Object = value; } /** *

Source S3 object used for the ephemeris.

*/ inline void SetSourceS3Object(S3Object&& value) { m_sourceS3ObjectHasBeenSet = true; m_sourceS3Object = std::move(value); } /** *

Source S3 object used for the ephemeris.

*/ inline EphemerisDescription& WithSourceS3Object(const S3Object& value) { SetSourceS3Object(value); return *this;} /** *

Source S3 object used for the ephemeris.

*/ inline EphemerisDescription& WithSourceS3Object(S3Object&& value) { SetSourceS3Object(std::move(value)); return *this;} private: Aws::String m_ephemerisData; bool m_ephemerisDataHasBeenSet = false; S3Object m_sourceS3Object; bool m_sourceS3ObjectHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws