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

The data store identifier.

*/ inline const Aws::String& GetDatastoreId() const{ return m_datastoreId; } /** *

The data store identifier.

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

The data store identifier.

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

The data store identifier.

*/ inline void SetDatastoreId(const char* value) { m_datastoreId.assign(value); } /** *

The data store identifier.

*/ inline CopyImageSetResult& WithDatastoreId(const Aws::String& value) { SetDatastoreId(value); return *this;} /** *

The data store identifier.

*/ inline CopyImageSetResult& WithDatastoreId(Aws::String&& value) { SetDatastoreId(std::move(value)); return *this;} /** *

The data store identifier.

*/ inline CopyImageSetResult& WithDatastoreId(const char* value) { SetDatastoreId(value); return *this;} /** *

The properties of the source image set.

*/ inline const CopySourceImageSetProperties& GetSourceImageSetProperties() const{ return m_sourceImageSetProperties; } /** *

The properties of the source image set.

*/ inline void SetSourceImageSetProperties(const CopySourceImageSetProperties& value) { m_sourceImageSetProperties = value; } /** *

The properties of the source image set.

*/ inline void SetSourceImageSetProperties(CopySourceImageSetProperties&& value) { m_sourceImageSetProperties = std::move(value); } /** *

The properties of the source image set.

*/ inline CopyImageSetResult& WithSourceImageSetProperties(const CopySourceImageSetProperties& value) { SetSourceImageSetProperties(value); return *this;} /** *

The properties of the source image set.

*/ inline CopyImageSetResult& WithSourceImageSetProperties(CopySourceImageSetProperties&& value) { SetSourceImageSetProperties(std::move(value)); return *this;} /** *

The properties of the destination image set.

*/ inline const CopyDestinationImageSetProperties& GetDestinationImageSetProperties() const{ return m_destinationImageSetProperties; } /** *

The properties of the destination image set.

*/ inline void SetDestinationImageSetProperties(const CopyDestinationImageSetProperties& value) { m_destinationImageSetProperties = value; } /** *

The properties of the destination image set.

*/ inline void SetDestinationImageSetProperties(CopyDestinationImageSetProperties&& value) { m_destinationImageSetProperties = std::move(value); } /** *

The properties of the destination image set.

*/ inline CopyImageSetResult& WithDestinationImageSetProperties(const CopyDestinationImageSetProperties& value) { SetDestinationImageSetProperties(value); return *this;} /** *

The properties of the destination image set.

*/ inline CopyImageSetResult& WithDestinationImageSetProperties(CopyDestinationImageSetProperties&& value) { SetDestinationImageSetProperties(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 CopyImageSetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CopyImageSetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CopyImageSetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_datastoreId; CopySourceImageSetProperties m_sourceImageSetProperties; CopyDestinationImageSetProperties m_destinationImageSetProperties; Aws::String m_requestId; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws