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

Metadata describing a particular ephemeris.

See Also:

AWS * API Reference

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

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline const Aws::String& GetEphemerisId() const{ return m_ephemerisId; } /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline bool EphemerisIdHasBeenSet() const { return m_ephemerisIdHasBeenSet; } /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline void SetEphemerisId(const Aws::String& value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId = value; } /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline void SetEphemerisId(Aws::String&& value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId = std::move(value); } /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline void SetEphemerisId(const char* value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId.assign(value); } /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline EphemerisMetaData& WithEphemerisId(const Aws::String& value) { SetEphemerisId(value); return *this;} /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline EphemerisMetaData& WithEphemerisId(Aws::String&& value) { SetEphemerisId(std::move(value)); return *this;} /** *

UUID of a customer-provided ephemeris.

This field is not populated for * default ephemerides from Space Track.

*/ inline EphemerisMetaData& WithEphemerisId(const char* value) { SetEphemerisId(value); return *this;} /** *

The epoch of a default, ephemeris from Space Track in UTC.

This field * is not populated for customer-provided ephemerides.

*/ inline const Aws::Utils::DateTime& GetEpoch() const{ return m_epoch; } /** *

The epoch of a default, ephemeris from Space Track in UTC.

This field * is not populated for customer-provided ephemerides.

*/ inline bool EpochHasBeenSet() const { return m_epochHasBeenSet; } /** *

The epoch of a default, ephemeris from Space Track in UTC.

This field * is not populated for customer-provided ephemerides.

*/ inline void SetEpoch(const Aws::Utils::DateTime& value) { m_epochHasBeenSet = true; m_epoch = value; } /** *

The epoch of a default, ephemeris from Space Track in UTC.

This field * is not populated for customer-provided ephemerides.

*/ inline void SetEpoch(Aws::Utils::DateTime&& value) { m_epochHasBeenSet = true; m_epoch = std::move(value); } /** *

The epoch of a default, ephemeris from Space Track in UTC.

This field * is not populated for customer-provided ephemerides.

*/ inline EphemerisMetaData& WithEpoch(const Aws::Utils::DateTime& value) { SetEpoch(value); return *this;} /** *

The epoch of a default, ephemeris from Space Track in UTC.

This field * is not populated for customer-provided ephemerides.

*/ inline EphemerisMetaData& WithEpoch(Aws::Utils::DateTime&& value) { SetEpoch(std::move(value)); return *this;} /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline EphemerisMetaData& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline EphemerisMetaData& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

A name string associated with the ephemeris. Used as a human-readable * identifier for the ephemeris.

A name is only returned for * customer-provider ephemerides that have a name associated.

*/ inline EphemerisMetaData& WithName(const char* value) { SetName(value); return *this;} /** *

The EphemerisSource that generated a given ephemeris.

*/ inline const EphemerisSource& GetSource() const{ return m_source; } /** *

The EphemerisSource that generated a given ephemeris.

*/ inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; } /** *

The EphemerisSource that generated a given ephemeris.

*/ inline void SetSource(const EphemerisSource& value) { m_sourceHasBeenSet = true; m_source = value; } /** *

The EphemerisSource that generated a given ephemeris.

*/ inline void SetSource(EphemerisSource&& value) { m_sourceHasBeenSet = true; m_source = std::move(value); } /** *

The EphemerisSource that generated a given ephemeris.

*/ inline EphemerisMetaData& WithSource(const EphemerisSource& value) { SetSource(value); return *this;} /** *

The EphemerisSource that generated a given ephemeris.

*/ inline EphemerisMetaData& WithSource(EphemerisSource&& value) { SetSource(std::move(value)); return *this;} private: Aws::String m_ephemerisId; bool m_ephemerisIdHasBeenSet = false; Aws::Utils::DateTime m_epoch; bool m_epochHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; EphemerisSource m_source; bool m_sourceHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws