/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DataPipeline { namespace Model { /** *

Contains the output of EvaluateExpression.

See Also:

AWS * API Reference

*/ class AWS_DATAPIPELINE_API EvaluateExpressionResult { public: EvaluateExpressionResult(); EvaluateExpressionResult(const Aws::AmazonWebServiceResult& result); EvaluateExpressionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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;} private: Aws::String m_evaluatedExpression; }; } // namespace Model } // namespace DataPipeline } // namespace Aws