/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { class CreateEphemerisResult { public: AWS_GROUNDSTATION_API CreateEphemerisResult(); AWS_GROUNDSTATION_API CreateEphemerisResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API CreateEphemerisResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The AWS Ground Station ephemeris ID.

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

The AWS Ground Station ephemeris ID.

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

The AWS Ground Station ephemeris ID.

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

The AWS Ground Station ephemeris ID.

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

The AWS Ground Station ephemeris ID.

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

The AWS Ground Station ephemeris ID.

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

The AWS Ground Station ephemeris ID.

*/ inline CreateEphemerisResult& WithEphemerisId(const char* value) { SetEphemerisId(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 CreateEphemerisResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateEphemerisResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateEphemerisResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_ephemerisId; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws