/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input variables to the app to be used by the InvokeScreenAutomation
* action request.See Also:
AWS
* API Reference
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