/** * 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 GetImageFrameRequest : public MedicalImagingRequest { public: AWS_MEDICALIMAGING_API GetImageFrameRequest(); // 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 "GetImageFrame"; } 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 GetImageFrameRequest& WithDatastoreId(const Aws::String& value) { SetDatastoreId(value); return *this;} /** *

The data store identifier.

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

The data store identifier.

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

The image set identifier.

*/ inline const Aws::String& GetImageSetId() const{ return m_imageSetId; } /** *

The image set identifier.

*/ inline bool ImageSetIdHasBeenSet() const { return m_imageSetIdHasBeenSet; } /** *

The image set identifier.

*/ inline void SetImageSetId(const Aws::String& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = value; } /** *

The image set identifier.

*/ inline void SetImageSetId(Aws::String&& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = std::move(value); } /** *

The image set identifier.

*/ inline void SetImageSetId(const char* value) { m_imageSetIdHasBeenSet = true; m_imageSetId.assign(value); } /** *

The image set identifier.

*/ inline GetImageFrameRequest& WithImageSetId(const Aws::String& value) { SetImageSetId(value); return *this;} /** *

The image set identifier.

*/ inline GetImageFrameRequest& WithImageSetId(Aws::String&& value) { SetImageSetId(std::move(value)); return *this;} /** *

The image set identifier.

*/ inline GetImageFrameRequest& WithImageSetId(const char* value) { SetImageSetId(value); return *this;} /** *

Information about the image frame (pixel data) identifier.

*/ inline const ImageFrameInformation& GetImageFrameInformation() const{ return m_imageFrameInformation; } /** *

Information about the image frame (pixel data) identifier.

*/ inline bool ImageFrameInformationHasBeenSet() const { return m_imageFrameInformationHasBeenSet; } /** *

Information about the image frame (pixel data) identifier.

*/ inline void SetImageFrameInformation(const ImageFrameInformation& value) { m_imageFrameInformationHasBeenSet = true; m_imageFrameInformation = value; } /** *

Information about the image frame (pixel data) identifier.

*/ inline void SetImageFrameInformation(ImageFrameInformation&& value) { m_imageFrameInformationHasBeenSet = true; m_imageFrameInformation = std::move(value); } /** *

Information about the image frame (pixel data) identifier.

*/ inline GetImageFrameRequest& WithImageFrameInformation(const ImageFrameInformation& value) { SetImageFrameInformation(value); return *this;} /** *

Information about the image frame (pixel data) identifier.

*/ inline GetImageFrameRequest& WithImageFrameInformation(ImageFrameInformation&& value) { SetImageFrameInformation(std::move(value)); return *this;} private: Aws::String m_datastoreId; bool m_datastoreIdHasBeenSet = false; Aws::String m_imageSetId; bool m_imageSetIdHasBeenSet = false; ImageFrameInformation m_imageFrameInformation; bool m_imageFrameInformationHasBeenSet = false; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws