AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetImageFrameRequest.h
1
6#pragma once
7#include <aws/medical-imaging/MedicalImaging_EXPORTS.h>
8#include <aws/medical-imaging/MedicalImagingRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/medical-imaging/model/ImageFrameInformation.h>
11#include <utility>
12
13namespace Aws
14{
15namespace MedicalImaging
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_MEDICALIMAGING_API GetImageFrameRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetImageFrame"; }
32
33 AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetDatastoreId() const { return m_datastoreId; }
41 inline bool DatastoreIdHasBeenSet() const { return m_datastoreIdHasBeenSet; }
42 template<typename DatastoreIdT = Aws::String>
43 void SetDatastoreId(DatastoreIdT&& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = std::forward<DatastoreIdT>(value); }
44 template<typename DatastoreIdT = Aws::String>
45 GetImageFrameRequest& WithDatastoreId(DatastoreIdT&& value) { SetDatastoreId(std::forward<DatastoreIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetImageSetId() const { return m_imageSetId; }
53 inline bool ImageSetIdHasBeenSet() const { return m_imageSetIdHasBeenSet; }
54 template<typename ImageSetIdT = Aws::String>
55 void SetImageSetId(ImageSetIdT&& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = std::forward<ImageSetIdT>(value); }
56 template<typename ImageSetIdT = Aws::String>
57 GetImageFrameRequest& WithImageSetId(ImageSetIdT&& value) { SetImageSetId(std::forward<ImageSetIdT>(value)); return *this;}
59
61
64 inline const ImageFrameInformation& GetImageFrameInformation() const { return m_imageFrameInformation; }
65 inline bool ImageFrameInformationHasBeenSet() const { return m_imageFrameInformationHasBeenSet; }
66 template<typename ImageFrameInformationT = ImageFrameInformation>
67 void SetImageFrameInformation(ImageFrameInformationT&& value) { m_imageFrameInformationHasBeenSet = true; m_imageFrameInformation = std::forward<ImageFrameInformationT>(value); }
68 template<typename ImageFrameInformationT = ImageFrameInformation>
69 GetImageFrameRequest& WithImageFrameInformation(ImageFrameInformationT&& value) { SetImageFrameInformation(std::forward<ImageFrameInformationT>(value)); return *this;}
71 private:
72
73 Aws::String m_datastoreId;
74 bool m_datastoreIdHasBeenSet = false;
75
76 Aws::String m_imageSetId;
77 bool m_imageSetIdHasBeenSet = false;
78
79 ImageFrameInformation m_imageFrameInformation;
80 bool m_imageFrameInformationHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace MedicalImaging
85} // namespace Aws
GetImageFrameRequest & WithImageFrameInformation(ImageFrameInformationT &&value)
void SetImageFrameInformation(ImageFrameInformationT &&value)
AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override
GetImageFrameRequest & WithDatastoreId(DatastoreIdT &&value)
GetImageFrameRequest & WithImageSetId(ImageSetIdT &&value)
virtual const char * GetServiceRequestName() const override
const ImageFrameInformation & GetImageFrameInformation() const
AWS_MEDICALIMAGING_API GetImageFrameRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String