/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Item in a list of satellites.See Also:
AWS
* API Reference
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 bool CurrentEphemerisHasBeenSet() const { return m_currentEphemerisHasBeenSet; } /** *The current ephemeris being used to compute the trajectory of the * satellite.
*/ inline void SetCurrentEphemeris(const EphemerisMetaData& value) { m_currentEphemerisHasBeenSet = true; m_currentEphemeris = value; } /** *The current ephemeris being used to compute the trajectory of the * satellite.
*/ inline void SetCurrentEphemeris(EphemerisMetaData&& value) { m_currentEphemerisHasBeenSet = true; m_currentEphemeris = std::move(value); } /** *The current ephemeris being used to compute the trajectory of the * satellite.
*/ inline SatelliteListItem& WithCurrentEphemeris(const EphemerisMetaData& value) { SetCurrentEphemeris(value); return *this;} /** *The current ephemeris being used to compute the trajectory of the * satellite.
*/ inline SatelliteListItem& WithCurrentEphemeris(EphemerisMetaData&& value) { SetCurrentEphemeris(std::move(value)); return *this;} /** *A list of ground stations to which the satellite is on-boarded.
*/ inline const Aws::VectorA list of ground stations to which the satellite is on-boarded.
*/ inline bool GroundStationsHasBeenSet() const { return m_groundStationsHasBeenSet; } /** *A list of ground stations to which the satellite is on-boarded.
*/ inline void SetGroundStations(const Aws::VectorA list of ground stations to which the satellite is on-boarded.
*/ inline void SetGroundStations(Aws::VectorA list of ground stations to which the satellite is on-boarded.
*/ inline SatelliteListItem& WithGroundStations(const Aws::VectorA list of ground stations to which the satellite is on-boarded.
*/ inline SatelliteListItem& WithGroundStations(Aws::VectorA list of ground stations to which the satellite is on-boarded.
*/ inline SatelliteListItem& AddGroundStations(const Aws::String& value) { m_groundStationsHasBeenSet = true; m_groundStations.push_back(value); return *this; } /** *A list of ground stations to which the satellite is on-boarded.
*/ inline SatelliteListItem& AddGroundStations(Aws::String&& value) { m_groundStationsHasBeenSet = true; m_groundStations.push_back(std::move(value)); return *this; } /** *A list of ground stations to which the satellite is on-boarded.
*/ inline SatelliteListItem& AddGroundStations(const char* value) { m_groundStationsHasBeenSet = true; m_groundStations.push_back(value); return *this; } /** *NORAD satellite ID number.
*/ inline int GetNoradSatelliteID() const{ return m_noradSatelliteID; } /** *NORAD satellite ID number.
*/ inline bool NoradSatelliteIDHasBeenSet() const { return m_noradSatelliteIDHasBeenSet; } /** *NORAD satellite ID number.
*/ inline void SetNoradSatelliteID(int value) { m_noradSatelliteIDHasBeenSet = true; m_noradSatelliteID = value; } /** *NORAD satellite ID number.
*/ inline SatelliteListItem& 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 bool SatelliteArnHasBeenSet() const { return m_satelliteArnHasBeenSet; } /** *ARN of a satellite.
*/ inline void SetSatelliteArn(const Aws::String& value) { m_satelliteArnHasBeenSet = true; m_satelliteArn = value; } /** *ARN of a satellite.
*/ inline void SetSatelliteArn(Aws::String&& value) { m_satelliteArnHasBeenSet = true; m_satelliteArn = std::move(value); } /** *ARN of a satellite.
*/ inline void SetSatelliteArn(const char* value) { m_satelliteArnHasBeenSet = true; m_satelliteArn.assign(value); } /** *ARN of a satellite.
*/ inline SatelliteListItem& WithSatelliteArn(const Aws::String& value) { SetSatelliteArn(value); return *this;} /** *ARN of a satellite.
*/ inline SatelliteListItem& WithSatelliteArn(Aws::String&& value) { SetSatelliteArn(std::move(value)); return *this;} /** *ARN of a satellite.
*/ inline SatelliteListItem& 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 bool SatelliteIdHasBeenSet() const { return m_satelliteIdHasBeenSet; } /** *UUID of a satellite.
*/ inline void SetSatelliteId(const Aws::String& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = value; } /** *UUID of a satellite.
*/ inline void SetSatelliteId(Aws::String&& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = std::move(value); } /** *UUID of a satellite.
*/ inline void SetSatelliteId(const char* value) { m_satelliteIdHasBeenSet = true; m_satelliteId.assign(value); } /** *UUID of a satellite.
*/ inline SatelliteListItem& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;} /** *UUID of a satellite.
*/ inline SatelliteListItem& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;} /** *UUID of a satellite.
*/ inline SatelliteListItem& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;} private: EphemerisMetaData m_currentEphemeris; bool m_currentEphemerisHasBeenSet = false; Aws::Vector