/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of EvaluateExpression.See Also:
AWS
* API Reference
The evaluated expression.
*/ inline const Aws::String& GetEvaluatedExpression() const{ return m_evaluatedExpression; } /** *The evaluated expression.
*/ inline void SetEvaluatedExpression(const Aws::String& value) { m_evaluatedExpression = value; } /** *The evaluated expression.
*/ inline void SetEvaluatedExpression(Aws::String&& value) { m_evaluatedExpression = std::move(value); } /** *The evaluated expression.
*/ inline void SetEvaluatedExpression(const char* value) { m_evaluatedExpression.assign(value); } /** *The evaluated expression.
*/ inline EvaluateExpressionResult& WithEvaluatedExpression(const Aws::String& value) { SetEvaluatedExpression(value); return *this;} /** *The evaluated expression.
*/ inline EvaluateExpressionResult& WithEvaluatedExpression(Aws::String&& value) { SetEvaluatedExpression(std::move(value)); return *this;} /** *The evaluated expression.
*/ inline EvaluateExpressionResult& WithEvaluatedExpression(const char* value) { SetEvaluatedExpression(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline EvaluateExpressionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline EvaluateExpressionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline EvaluateExpressionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_evaluatedExpression; Aws::String m_requestId; }; } // namespace Model } // namespace DataPipeline } // namespace Aws