/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class GetSatelliteResult { public: AWS_GROUNDSTATION_API GetSatelliteResult(); AWS_GROUNDSTATION_API GetSatelliteResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API GetSatelliteResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The current ephemeris being used to compute the trajectory of the * satellite.

*/ inline const EphemerisMetaData& GetCurrentEphemeris() const{ return m_currentEphemeris; } /** *

The current ephemeris being used to compute the trajectory of the * satellite.

*/ inline void SetCurrentEphemeris(const EphemerisMetaData& value) { m_currentEphemeris = value; } /** *

The current ephemeris being used to compute the trajectory of the * satellite.

*/ inline void SetCurrentEphemeris(EphemerisMetaData&& value) { m_currentEphemeris = std::move(value); } /** *

The current ephemeris being used to compute the trajectory of the * satellite.

*/ inline GetSatelliteResult& WithCurrentEphemeris(const EphemerisMetaData& value) { SetCurrentEphemeris(value); return *this;} /** *

The current ephemeris being used to compute the trajectory of the * satellite.

*/ inline GetSatelliteResult& WithCurrentEphemeris(EphemerisMetaData&& value) { SetCurrentEphemeris(std::move(value)); return *this;} /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline const Aws::Vector& GetGroundStations() const{ return m_groundStations; } /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline void SetGroundStations(const Aws::Vector& value) { m_groundStations = value; } /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline void SetGroundStations(Aws::Vector&& value) { m_groundStations = std::move(value); } /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline GetSatelliteResult& WithGroundStations(const Aws::Vector& value) { SetGroundStations(value); return *this;} /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline GetSatelliteResult& WithGroundStations(Aws::Vector&& value) { SetGroundStations(std::move(value)); return *this;} /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline GetSatelliteResult& AddGroundStations(const Aws::String& value) { m_groundStations.push_back(value); return *this; } /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline GetSatelliteResult& AddGroundStations(Aws::String&& value) { m_groundStations.push_back(std::move(value)); return *this; } /** *

A list of ground stations to which the satellite is on-boarded.

*/ inline GetSatelliteResult& AddGroundStations(const char* value) { m_groundStations.push_back(value); return *this; } /** *

NORAD satellite ID number.

*/ inline int GetNoradSatelliteID() const{ return m_noradSatelliteID; } /** *

NORAD satellite ID number.

*/ inline void SetNoradSatelliteID(int value) { m_noradSatelliteID = value; } /** *

NORAD satellite ID number.

*/ inline GetSatelliteResult& WithNoradSatelliteID(int value) { SetNoradSatelliteID(value); return *this;} /** *

ARN of a satellite.

*/ inline const Aws::String& GetSatelliteArn() const{ return m_satelliteArn; } /** *

ARN of a satellite.

*/ inline void SetSatelliteArn(const Aws::String& value) { m_satelliteArn = value; } /** *

ARN of a satellite.

*/ inline void SetSatelliteArn(Aws::String&& value) { m_satelliteArn = std::move(value); } /** *

ARN of a satellite.

*/ inline void SetSatelliteArn(const char* value) { m_satelliteArn.assign(value); } /** *

ARN of a satellite.

*/ inline GetSatelliteResult& WithSatelliteArn(const Aws::String& value) { SetSatelliteArn(value); return *this;} /** *

ARN of a satellite.

*/ inline GetSatelliteResult& WithSatelliteArn(Aws::String&& value) { SetSatelliteArn(std::move(value)); return *this;} /** *

ARN of a satellite.

*/ inline GetSatelliteResult& WithSatelliteArn(const char* value) { SetSatelliteArn(value); return *this;} /** *

UUID of a satellite.

*/ inline const Aws::String& GetSatelliteId() const{ return m_satelliteId; } /** *

UUID of a satellite.

*/ inline void SetSatelliteId(const Aws::String& value) { m_satelliteId = value; } /** *

UUID of a satellite.

*/ inline void SetSatelliteId(Aws::String&& value) { m_satelliteId = std::move(value); } /** *

UUID of a satellite.

*/ inline void SetSatelliteId(const char* value) { m_satelliteId.assign(value); } /** *

UUID of a satellite.

*/ inline GetSatelliteResult& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;} /** *

UUID of a satellite.

*/ inline GetSatelliteResult& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;} /** *

UUID of a satellite.

*/ inline GetSatelliteResult& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetSatelliteResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSatelliteResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSatelliteResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: EphemerisMetaData m_currentEphemeris; Aws::Vector m_groundStations; int m_noradSatelliteID; Aws::String m_satelliteArn; Aws::String m_satelliteId; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws