/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace LookoutforVision { namespace Model { class DescribeModelResult { public: AWS_LOOKOUTFORVISION_API DescribeModelResult(); AWS_LOOKOUTFORVISION_API DescribeModelResult(const Aws::AmazonWebServiceResult& result); AWS_LOOKOUTFORVISION_API DescribeModelResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Contains the description of the model.

*/ inline const ModelDescription& GetModelDescription() const{ return m_modelDescription; } /** *

Contains the description of the model.

*/ inline void SetModelDescription(const ModelDescription& value) { m_modelDescription = value; } /** *

Contains the description of the model.

*/ inline void SetModelDescription(ModelDescription&& value) { m_modelDescription = std::move(value); } /** *

Contains the description of the model.

*/ inline DescribeModelResult& WithModelDescription(const ModelDescription& value) { SetModelDescription(value); return *this;} /** *

Contains the description of the model.

*/ inline DescribeModelResult& WithModelDescription(ModelDescription&& value) { SetModelDescription(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeModelResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeModelResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeModelResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ModelDescription m_modelDescription; Aws::String m_requestId; }; } // namespace Model } // namespace LookoutforVision } // namespace Aws