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

Information about the image.

*/ inline const Image& GetImage() const{ return m_image; } /** *

Information about the image.

*/ inline void SetImage(const Image& value) { m_image = value; } /** *

Information about the image.

*/ inline void SetImage(Image&& value) { m_image = std::move(value); } /** *

Information about the image.

*/ inline DeleteImageResult& WithImage(const Image& value) { SetImage(value); return *this;} /** *

Information about the image.

*/ inline DeleteImageResult& WithImage(Image&& value) { SetImage(std::move(value)); return *this;} private: Image m_image; }; } // namespace Model } // namespace AppStream } // namespace Aws