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

Information about the demodulation Config.

See * Also:

AWS * API Reference

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

Unvalidated JSON of a demodulation Config.

*/ inline const Aws::String& GetUnvalidatedJSON() const{ return m_unvalidatedJSON; } /** *

Unvalidated JSON of a demodulation Config.

*/ inline bool UnvalidatedJSONHasBeenSet() const { return m_unvalidatedJSONHasBeenSet; } /** *

Unvalidated JSON of a demodulation Config.

*/ inline void SetUnvalidatedJSON(const Aws::String& value) { m_unvalidatedJSONHasBeenSet = true; m_unvalidatedJSON = value; } /** *

Unvalidated JSON of a demodulation Config.

*/ inline void SetUnvalidatedJSON(Aws::String&& value) { m_unvalidatedJSONHasBeenSet = true; m_unvalidatedJSON = std::move(value); } /** *

Unvalidated JSON of a demodulation Config.

*/ inline void SetUnvalidatedJSON(const char* value) { m_unvalidatedJSONHasBeenSet = true; m_unvalidatedJSON.assign(value); } /** *

Unvalidated JSON of a demodulation Config.

*/ inline DemodulationConfig& WithUnvalidatedJSON(const Aws::String& value) { SetUnvalidatedJSON(value); return *this;} /** *

Unvalidated JSON of a demodulation Config.

*/ inline DemodulationConfig& WithUnvalidatedJSON(Aws::String&& value) { SetUnvalidatedJSON(std::move(value)); return *this;} /** *

Unvalidated JSON of a demodulation Config.

*/ inline DemodulationConfig& WithUnvalidatedJSON(const char* value) { SetUnvalidatedJSON(value); return *this;} private: Aws::String m_unvalidatedJSON; bool m_unvalidatedJSONHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws