AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetDatastoreId(const Aws::String& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = value; }
43 inline void SetDatastoreId(Aws::String&& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = std::move(value); }
44 inline void SetDatastoreId(const char* value) { m_datastoreIdHasBeenSet = true; m_datastoreId.assign(value); }
45 inline GetImageFrameRequest& WithDatastoreId(const Aws::String& value) { SetDatastoreId(value); return *this;}
46 inline GetImageFrameRequest& WithDatastoreId(Aws::String&& value) { SetDatastoreId(std::move(value)); return *this;}
47 inline GetImageFrameRequest& WithDatastoreId(const char* value) { SetDatastoreId(value); return *this;}
49
51
54 inline const Aws::String& GetImageSetId() const{ return m_imageSetId; }
55 inline bool ImageSetIdHasBeenSet() const { return m_imageSetIdHasBeenSet; }
56 inline void SetImageSetId(const Aws::String& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = value; }
57 inline void SetImageSetId(Aws::String&& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = std::move(value); }
58 inline void SetImageSetId(const char* value) { m_imageSetIdHasBeenSet = true; m_imageSetId.assign(value); }
59 inline GetImageFrameRequest& WithImageSetId(const Aws::String& value) { SetImageSetId(value); return *this;}
60 inline GetImageFrameRequest& WithImageSetId(Aws::String&& value) { SetImageSetId(std::move(value)); return *this;}
61 inline GetImageFrameRequest& WithImageSetId(const char* value) { SetImageSetId(value); return *this;}
63
65
68 inline const ImageFrameInformation& GetImageFrameInformation() const{ return m_imageFrameInformation; }
69 inline bool ImageFrameInformationHasBeenSet() const { return m_imageFrameInformationHasBeenSet; }
70 inline void SetImageFrameInformation(const ImageFrameInformation& value) { m_imageFrameInformationHasBeenSet = true; m_imageFrameInformation = value; }
71 inline void SetImageFrameInformation(ImageFrameInformation&& value) { m_imageFrameInformationHasBeenSet = true; m_imageFrameInformation = std::move(value); }
75 private:
76
77 Aws::String m_datastoreId;
78 bool m_datastoreIdHasBeenSet = false;
79
80 Aws::String m_imageSetId;
81 bool m_imageSetIdHasBeenSet = false;
82
83 ImageFrameInformation m_imageFrameInformation;
84 bool m_imageFrameInformationHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace MedicalImaging
89} // namespace Aws
void SetImageFrameInformation(const ImageFrameInformation &value)
GetImageFrameRequest & WithImageSetId(const Aws::String &value)
AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override
GetImageFrameRequest & WithImageFrameInformation(ImageFrameInformation &&value)
GetImageFrameRequest & WithDatastoreId(Aws::String &&value)
GetImageFrameRequest & WithDatastoreId(const char *value)
virtual const char * GetServiceRequestName() const override
GetImageFrameRequest & WithImageFrameInformation(const ImageFrameInformation &value)
void SetImageFrameInformation(ImageFrameInformation &&value)
const ImageFrameInformation & GetImageFrameInformation() const
GetImageFrameRequest & WithImageSetId(const char *value)
GetImageFrameRequest & WithImageSetId(Aws::String &&value)
GetImageFrameRequest & WithDatastoreId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String