183 lines
5.3 KiB
C
183 lines
5.3 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/groundstation/GroundStation_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace GroundStation
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* <p/><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatelliteResponse">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_GROUNDSTATION_API GetSatelliteResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetSatelliteResult();
|
|||
|
|
GetSatelliteResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
GetSatelliteResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Aws::String>& GetGroundStations() const{ return m_groundStations; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGroundStations(const Aws::Vector<Aws::String>& value) { m_groundStations = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGroundStations(Aws::Vector<Aws::String>&& value) { m_groundStations = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithGroundStations(const Aws::Vector<Aws::String>& value) { SetGroundStations(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithGroundStations(Aws::Vector<Aws::String>&& value) { SetGroundStations(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& AddGroundStations(const Aws::String& value) { m_groundStations.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& AddGroundStations(Aws::String&& value) { m_groundStations.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of ground stations to which the satellite is on-boarded.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& AddGroundStations(const char* value) { m_groundStations.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>NORAD satellite ID number.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetNoradSatelliteID() const{ return m_noradSatelliteID; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>NORAD satellite ID number.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNoradSatelliteID(int value) { m_noradSatelliteID = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>NORAD satellite ID number.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithNoradSatelliteID(int value) { SetNoradSatelliteID(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSatelliteArn() const{ return m_satelliteArn; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteArn(const Aws::String& value) { m_satelliteArn = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteArn(Aws::String&& value) { m_satelliteArn = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteArn(const char* value) { m_satelliteArn.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithSatelliteArn(const Aws::String& value) { SetSatelliteArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithSatelliteArn(Aws::String&& value) { SetSatelliteArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithSatelliteArn(const char* value) { SetSatelliteArn(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSatelliteId() const{ return m_satelliteId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteId(const Aws::String& value) { m_satelliteId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteId(Aws::String&& value) { m_satelliteId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteId(const char* value) { m_satelliteId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteResult& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::Vector<Aws::String> m_groundStations;
|
|||
|
|
|
|||
|
|
int m_noradSatelliteID;
|
|||
|
|
|
|||
|
|
Aws::String m_satelliteArn;
|
|||
|
|
|
|||
|
|
Aws::String m_satelliteId;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace GroundStation
|
|||
|
|
} // namespace Aws
|