/** * 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 Personalize { namespace Model { class AWS_PERSONALIZE_API DescribeSolutionResult { public: DescribeSolutionResult(); DescribeSolutionResult(const Aws::AmazonWebServiceResult& result); DescribeSolutionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An object that describes the solution.

*/ inline const Solution& GetSolution() const{ return m_solution; } /** *

An object that describes the solution.

*/ inline void SetSolution(const Solution& value) { m_solution = value; } /** *

An object that describes the solution.

*/ inline void SetSolution(Solution&& value) { m_solution = std::move(value); } /** *

An object that describes the solution.

*/ inline DescribeSolutionResult& WithSolution(const Solution& value) { SetSolution(value); return *this;} /** *

An object that describes the solution.

*/ inline DescribeSolutionResult& WithSolution(Solution&& value) { SetSolution(std::move(value)); return *this;} private: Solution m_solution; }; } // namespace Model } // namespace Personalize } // namespace Aws