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

The ARN of the new solution version.

*/ inline const Aws::String& GetSolutionVersionArn() const{ return m_solutionVersionArn; } /** *

The ARN of the new solution version.

*/ inline void SetSolutionVersionArn(const Aws::String& value) { m_solutionVersionArn = value; } /** *

The ARN of the new solution version.

*/ inline void SetSolutionVersionArn(Aws::String&& value) { m_solutionVersionArn = std::move(value); } /** *

The ARN of the new solution version.

*/ inline void SetSolutionVersionArn(const char* value) { m_solutionVersionArn.assign(value); } /** *

The ARN of the new solution version.

*/ inline CreateSolutionVersionResult& WithSolutionVersionArn(const Aws::String& value) { SetSolutionVersionArn(value); return *this;} /** *

The ARN of the new solution version.

*/ inline CreateSolutionVersionResult& WithSolutionVersionArn(Aws::String&& value) { SetSolutionVersionArn(std::move(value)); return *this;} /** *

The ARN of the new solution version.

*/ inline CreateSolutionVersionResult& WithSolutionVersionArn(const char* value) { SetSolutionVersionArn(value); return *this;} private: Aws::String m_solutionVersionArn; }; } // namespace Model } // namespace Personalize } // namespace Aws