/** * 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 decode Config.

See Also:

* AWS * API Reference

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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

Unvalidated JSON of a decode Config.

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