/** * 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 DescribeSolutionVersionResult { public: DescribeSolutionVersionResult(); DescribeSolutionVersionResult(const Aws::AmazonWebServiceResult& result); DescribeSolutionVersionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The solution version.

*/ inline const SolutionVersion& GetSolutionVersion() const{ return m_solutionVersion; } /** *

The solution version.

*/ inline void SetSolutionVersion(const SolutionVersion& value) { m_solutionVersion = value; } /** *

The solution version.

*/ inline void SetSolutionVersion(SolutionVersion&& value) { m_solutionVersion = std::move(value); } /** *

The solution version.

*/ inline DescribeSolutionVersionResult& WithSolutionVersion(const SolutionVersion& value) { SetSolutionVersion(value); return *this;} /** *

The solution version.

*/ inline DescribeSolutionVersionResult& WithSolutionVersion(SolutionVersion&& value) { SetSolutionVersion(std::move(value)); return *this;} private: SolutionVersion m_solutionVersion; }; } // namespace Model } // namespace Personalize } // namespace Aws