/** * 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 { namespace MedicalImaging { namespace Model { /** */ class CopyImageSetRequest : public MedicalImagingRequest { public: AWS_MEDICALIMAGING_API CopyImageSetRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CopyImageSet"; } AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override; /** *

The data store identifier.

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

The data store identifier.

*/ inline bool DatastoreIdHasBeenSet() const { return m_datastoreIdHasBeenSet; } /** *

The data store identifier.

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

The data store identifier.

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

The data store identifier.

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

The data store identifier.

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

The data store identifier.

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

The data store identifier.

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

The source image set identifier.

*/ inline const Aws::String& GetSourceImageSetId() const{ return m_sourceImageSetId; } /** *

The source image set identifier.

*/ inline bool SourceImageSetIdHasBeenSet() const { return m_sourceImageSetIdHasBeenSet; } /** *

The source image set identifier.

*/ inline void SetSourceImageSetId(const Aws::String& value) { m_sourceImageSetIdHasBeenSet = true; m_sourceImageSetId = value; } /** *

The source image set identifier.

*/ inline void SetSourceImageSetId(Aws::String&& value) { m_sourceImageSetIdHasBeenSet = true; m_sourceImageSetId = std::move(value); } /** *

The source image set identifier.

*/ inline void SetSourceImageSetId(const char* value) { m_sourceImageSetIdHasBeenSet = true; m_sourceImageSetId.assign(value); } /** *

The source image set identifier.

*/ inline CopyImageSetRequest& WithSourceImageSetId(const Aws::String& value) { SetSourceImageSetId(value); return *this;} /** *

The source image set identifier.

*/ inline CopyImageSetRequest& WithSourceImageSetId(Aws::String&& value) { SetSourceImageSetId(std::move(value)); return *this;} /** *

The source image set identifier.

*/ inline CopyImageSetRequest& WithSourceImageSetId(const char* value) { SetSourceImageSetId(value); return *this;} /** *

Copy image set information.

*/ inline const CopyImageSetInformation& GetCopyImageSetInformation() const{ return m_copyImageSetInformation; } /** *

Copy image set information.

*/ inline bool CopyImageSetInformationHasBeenSet() const { return m_copyImageSetInformationHasBeenSet; } /** *

Copy image set information.

*/ inline void SetCopyImageSetInformation(const CopyImageSetInformation& value) { m_copyImageSetInformationHasBeenSet = true; m_copyImageSetInformation = value; } /** *

Copy image set information.

*/ inline void SetCopyImageSetInformation(CopyImageSetInformation&& value) { m_copyImageSetInformationHasBeenSet = true; m_copyImageSetInformation = std::move(value); } /** *

Copy image set information.

*/ inline CopyImageSetRequest& WithCopyImageSetInformation(const CopyImageSetInformation& value) { SetCopyImageSetInformation(value); return *this;} /** *

Copy image set information.

*/ inline CopyImageSetRequest& WithCopyImageSetInformation(CopyImageSetInformation&& value) { SetCopyImageSetInformation(std::move(value)); return *this;} private: Aws::String m_datastoreId; bool m_datastoreIdHasBeenSet = false; Aws::String m_sourceImageSetId; bool m_sourceImageSetIdHasBeenSet = false; CopyImageSetInformation m_copyImageSetInformation; bool m_copyImageSetInformationHasBeenSet = false; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws