/** * 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 SageMaker { namespace Model { class UpdateImageResult { public: AWS_SAGEMAKER_API UpdateImageResult(); AWS_SAGEMAKER_API UpdateImageResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKER_API UpdateImageResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN of the image.

*/ inline const Aws::String& GetImageArn() const{ return m_imageArn; } /** *

The ARN of the image.

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

The ARN of the image.

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

The ARN of the image.

*/ inline void SetImageArn(const char* value) { m_imageArn.assign(value); } /** *

The ARN of the image.

*/ inline UpdateImageResult& WithImageArn(const Aws::String& value) { SetImageArn(value); return *this;} /** *

The ARN of the image.

*/ inline UpdateImageResult& WithImageArn(Aws::String&& value) { SetImageArn(std::move(value)); return *this;} /** *

The ARN of the image.

*/ inline UpdateImageResult& WithImageArn(const char* value) { SetImageArn(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 UpdateImageResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateImageResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateImageResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_imageArn; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws