This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-personalize/include/aws/personalize/model/DescribeSolutionResult.h

68 lines
1.6 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/Solution.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 DescribeSolutionResult
{
public:
DescribeSolutionResult();
DescribeSolutionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeSolutionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>An object that describes the solution.</p>
*/
inline const Solution& GetSolution() const{ return m_solution; }
/**
* <p>An object that describes the solution.</p>
*/
inline void SetSolution(const Solution& value) { m_solution = value; }
/**
* <p>An object that describes the solution.</p>
*/
inline void SetSolution(Solution&& value) { m_solution = std::move(value); }
/**
* <p>An object that describes the solution.</p>
*/
inline DescribeSolutionResult& WithSolution(const Solution& value) { SetSolution(value); return *this;}
/**
* <p>An object that describes the solution.</p>
*/
inline DescribeSolutionResult& WithSolution(Solution&& value) { SetSolution(std::move(value)); return *this;}
private:
Solution m_solution;
};
} // namespace Model
} // namespace Personalize
} // namespace Aws