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

Ephemeris data in Orbit Ephemeris Message (OEM) format.

See * Also:

AWS * API Reference

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

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline const Aws::String& GetOemData() const{ return m_oemData; } /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline bool OemDataHasBeenSet() const { return m_oemDataHasBeenSet; } /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline void SetOemData(const Aws::String& value) { m_oemDataHasBeenSet = true; m_oemData = value; } /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline void SetOemData(Aws::String&& value) { m_oemDataHasBeenSet = true; m_oemData = std::move(value); } /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline void SetOemData(const char* value) { m_oemDataHasBeenSet = true; m_oemData.assign(value); } /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline OEMEphemeris& WithOemData(const Aws::String& value) { SetOemData(value); return *this;} /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline OEMEphemeris& WithOemData(Aws::String&& value) { SetOemData(std::move(value)); return *this;} /** *

The data for an OEM ephemeris, supplied directly in the request rather than * through an S3 object.

*/ inline OEMEphemeris& WithOemData(const char* value) { SetOemData(value); return *this;} /** *

Identifies the S3 object to be used as the ephemeris.

*/ inline const S3Object& GetS3Object() const{ return m_s3Object; } /** *

Identifies the S3 object to be used as the ephemeris.

*/ inline bool S3ObjectHasBeenSet() const { return m_s3ObjectHasBeenSet; } /** *

Identifies the S3 object to be used as the ephemeris.

*/ inline void SetS3Object(const S3Object& value) { m_s3ObjectHasBeenSet = true; m_s3Object = value; } /** *

Identifies the S3 object to be used as the ephemeris.

*/ inline void SetS3Object(S3Object&& value) { m_s3ObjectHasBeenSet = true; m_s3Object = std::move(value); } /** *

Identifies the S3 object to be used as the ephemeris.

*/ inline OEMEphemeris& WithS3Object(const S3Object& value) { SetS3Object(value); return *this;} /** *

Identifies the S3 object to be used as the ephemeris.

*/ inline OEMEphemeris& WithS3Object(S3Object&& value) { SetS3Object(std::move(value)); return *this;} private: Aws::String m_oemData; bool m_oemDataHasBeenSet = false; S3Object m_s3Object; bool m_s3ObjectHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws