This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

90 lines
2.6 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/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace GroundStation
{
namespace Model
{
/**
* <p>Information about the decode <code>Config</code>.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DecodeConfig">AWS
* API Reference</a></p>
*/
class AWS_GROUNDSTATION_API DecodeConfig
{
public:
DecodeConfig();
DecodeConfig(Aws::Utils::Json::JsonView jsonValue);
DecodeConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline const Aws::String& GetUnvalidatedJSON() const{ return m_unvalidatedJSON; }
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline bool UnvalidatedJSONHasBeenSet() const { return m_unvalidatedJSONHasBeenSet; }
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline void SetUnvalidatedJSON(const Aws::String& value) { m_unvalidatedJSONHasBeenSet = true; m_unvalidatedJSON = value; }
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline void SetUnvalidatedJSON(Aws::String&& value) { m_unvalidatedJSONHasBeenSet = true; m_unvalidatedJSON = std::move(value); }
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline void SetUnvalidatedJSON(const char* value) { m_unvalidatedJSONHasBeenSet = true; m_unvalidatedJSON.assign(value); }
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline DecodeConfig& WithUnvalidatedJSON(const Aws::String& value) { SetUnvalidatedJSON(value); return *this;}
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline DecodeConfig& WithUnvalidatedJSON(Aws::String&& value) { SetUnvalidatedJSON(std::move(value)); return *this;}
/**
* <p>Unvalidated JSON of a decode <code>Config</code>.</p>
*/
inline DecodeConfig& WithUnvalidatedJSON(const char* value) { SetUnvalidatedJSON(value); return *this;}
private:
Aws::String m_unvalidatedJSON;
bool m_unvalidatedJSONHasBeenSet;
};
} // namespace Model
} // namespace GroundStation
} // namespace Aws