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

The name of the destination image.

*/ inline const Aws::String& GetDestinationImageName() const{ return m_destinationImageName; } /** *

The name of the destination image.

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

The name of the destination image.

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

The name of the destination image.

*/ inline void SetDestinationImageName(const char* value) { m_destinationImageName.assign(value); } /** *

The name of the destination image.

*/ inline CopyImageResult& WithDestinationImageName(const Aws::String& value) { SetDestinationImageName(value); return *this;} /** *

The name of the destination image.

*/ inline CopyImageResult& WithDestinationImageName(Aws::String&& value) { SetDestinationImageName(std::move(value)); return *this;} /** *

The name of the destination image.

*/ inline CopyImageResult& WithDestinationImageName(const char* value) { SetDestinationImageName(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 CopyImageResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CopyImageResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CopyImageResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_destinationImageName; Aws::String m_requestId; }; } // namespace Model } // namespace AppStream } // namespace Aws