/** * 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 Honeycode { namespace Model { /** *

The input variables to the app to be used by the InvokeScreenAutomation * action request.

See Also:

AWS * API Reference

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

Raw value of the variable.

*/ inline const Aws::String& GetRawValue() const{ return m_rawValue; } /** *

Raw value of the variable.

*/ inline bool RawValueHasBeenSet() const { return m_rawValueHasBeenSet; } /** *

Raw value of the variable.

*/ inline void SetRawValue(const Aws::String& value) { m_rawValueHasBeenSet = true; m_rawValue = value; } /** *

Raw value of the variable.

*/ inline void SetRawValue(Aws::String&& value) { m_rawValueHasBeenSet = true; m_rawValue = std::move(value); } /** *

Raw value of the variable.

*/ inline void SetRawValue(const char* value) { m_rawValueHasBeenSet = true; m_rawValue.assign(value); } /** *

Raw value of the variable.

*/ inline VariableValue& WithRawValue(const Aws::String& value) { SetRawValue(value); return *this;} /** *

Raw value of the variable.

*/ inline VariableValue& WithRawValue(Aws::String&& value) { SetRawValue(std::move(value)); return *this;} /** *

Raw value of the variable.

*/ inline VariableValue& WithRawValue(const char* value) { SetRawValue(value); return *this;} private: Aws::String m_rawValue; bool m_rawValueHasBeenSet = false; }; } // namespace Model } // namespace Honeycode } // namespace Aws