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/CreateSolutionVersionResult.h

78 lines
2.1 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/core/utils/memory/stl/AWSString.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 CreateSolutionVersionResult
{
public:
CreateSolutionVersionResult();
CreateSolutionVersionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateSolutionVersionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ARN of the new solution version.</p>
*/
inline const Aws::String& GetSolutionVersionArn() const{ return m_solutionVersionArn; }
/**
* <p>The ARN of the new solution version.</p>
*/
inline void SetSolutionVersionArn(const Aws::String& value) { m_solutionVersionArn = value; }
/**
* <p>The ARN of the new solution version.</p>
*/
inline void SetSolutionVersionArn(Aws::String&& value) { m_solutionVersionArn = std::move(value); }
/**
* <p>The ARN of the new solution version.</p>
*/
inline void SetSolutionVersionArn(const char* value) { m_solutionVersionArn.assign(value); }
/**
* <p>The ARN of the new solution version.</p>
*/
inline CreateSolutionVersionResult& WithSolutionVersionArn(const Aws::String& value) { SetSolutionVersionArn(value); return *this;}
/**
* <p>The ARN of the new solution version.</p>
*/
inline CreateSolutionVersionResult& WithSolutionVersionArn(Aws::String&& value) { SetSolutionVersionArn(std::move(value)); return *this;}
/**
* <p>The ARN of the new solution version.</p>
*/
inline CreateSolutionVersionResult& WithSolutionVersionArn(const char* value) { SetSolutionVersionArn(value); return *this;}
private:
Aws::String m_solutionVersionArn;
};
} // namespace Model
} // namespace Personalize
} // namespace Aws