68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/personalize/Personalize_EXPORTS.h>
|
|
#include <aws/personalize/model/SolutionVersion.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeSolutionVersionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The solution version.</p>
|
|
*/
|
|
inline const SolutionVersion& GetSolutionVersion() const{ return m_solutionVersion; }
|
|
|
|
/**
|
|
* <p>The solution version.</p>
|
|
*/
|
|
inline void SetSolutionVersion(const SolutionVersion& value) { m_solutionVersion = value; }
|
|
|
|
/**
|
|
* <p>The solution version.</p>
|
|
*/
|
|
inline void SetSolutionVersion(SolutionVersion&& value) { m_solutionVersion = std::move(value); }
|
|
|
|
/**
|
|
* <p>The solution version.</p>
|
|
*/
|
|
inline DescribeSolutionVersionResult& WithSolutionVersion(const SolutionVersion& value) { SetSolutionVersion(value); return *this;}
|
|
|
|
/**
|
|
* <p>The solution version.</p>
|
|
*/
|
|
inline DescribeSolutionVersionResult& WithSolutionVersion(SolutionVersion&& value) { SetSolutionVersion(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
SolutionVersion m_solutionVersion;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Personalize
|
|
} // namespace Aws
|