AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CopyImageSetRequest.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/CopyImageSetInformation.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace MedicalImaging
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_MEDICALIMAGING_API CopyImageSetRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "CopyImageSet"; }
36
37 AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override;
38
39 AWS_MEDICALIMAGING_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetDatastoreId() const{ return m_datastoreId; }
47 inline bool DatastoreIdHasBeenSet() const { return m_datastoreIdHasBeenSet; }
48 inline void SetDatastoreId(const Aws::String& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = value; }
49 inline void SetDatastoreId(Aws::String&& value) { m_datastoreIdHasBeenSet = true; m_datastoreId = std::move(value); }
50 inline void SetDatastoreId(const char* value) { m_datastoreIdHasBeenSet = true; m_datastoreId.assign(value); }
51 inline CopyImageSetRequest& WithDatastoreId(const Aws::String& value) { SetDatastoreId(value); return *this;}
52 inline CopyImageSetRequest& WithDatastoreId(Aws::String&& value) { SetDatastoreId(std::move(value)); return *this;}
53 inline CopyImageSetRequest& WithDatastoreId(const char* value) { SetDatastoreId(value); return *this;}
55
57
60 inline const Aws::String& GetSourceImageSetId() const{ return m_sourceImageSetId; }
61 inline bool SourceImageSetIdHasBeenSet() const { return m_sourceImageSetIdHasBeenSet; }
62 inline void SetSourceImageSetId(const Aws::String& value) { m_sourceImageSetIdHasBeenSet = true; m_sourceImageSetId = value; }
63 inline void SetSourceImageSetId(Aws::String&& value) { m_sourceImageSetIdHasBeenSet = true; m_sourceImageSetId = std::move(value); }
64 inline void SetSourceImageSetId(const char* value) { m_sourceImageSetIdHasBeenSet = true; m_sourceImageSetId.assign(value); }
65 inline CopyImageSetRequest& WithSourceImageSetId(const Aws::String& value) { SetSourceImageSetId(value); return *this;}
66 inline CopyImageSetRequest& WithSourceImageSetId(Aws::String&& value) { SetSourceImageSetId(std::move(value)); return *this;}
67 inline CopyImageSetRequest& WithSourceImageSetId(const char* value) { SetSourceImageSetId(value); return *this;}
69
71
74 inline const CopyImageSetInformation& GetCopyImageSetInformation() const{ return m_copyImageSetInformation; }
75 inline bool CopyImageSetInformationHasBeenSet() const { return m_copyImageSetInformationHasBeenSet; }
76 inline void SetCopyImageSetInformation(const CopyImageSetInformation& value) { m_copyImageSetInformationHasBeenSet = true; m_copyImageSetInformation = value; }
77 inline void SetCopyImageSetInformation(CopyImageSetInformation&& value) { m_copyImageSetInformationHasBeenSet = true; m_copyImageSetInformation = std::move(value); }
81
83
88 inline bool GetForce() const{ return m_force; }
89 inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; }
90 inline void SetForce(bool value) { m_forceHasBeenSet = true; m_force = value; }
91 inline CopyImageSetRequest& WithForce(bool value) { SetForce(value); return *this;}
93 private:
94
95 Aws::String m_datastoreId;
96 bool m_datastoreIdHasBeenSet = false;
97
98 Aws::String m_sourceImageSetId;
99 bool m_sourceImageSetIdHasBeenSet = false;
100
101 CopyImageSetInformation m_copyImageSetInformation;
102 bool m_copyImageSetInformationHasBeenSet = false;
103
104 bool m_force;
105 bool m_forceHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace MedicalImaging
110} // namespace Aws
CopyImageSetRequest & WithCopyImageSetInformation(const CopyImageSetInformation &value)
void SetCopyImageSetInformation(CopyImageSetInformation &&value)
const CopyImageSetInformation & GetCopyImageSetInformation() const
AWS_MEDICALIMAGING_API Aws::String SerializePayload() const override
AWS_MEDICALIMAGING_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
CopyImageSetRequest & WithSourceImageSetId(const char *value)
CopyImageSetRequest & WithDatastoreId(const Aws::String &value)
CopyImageSetRequest & WithSourceImageSetId(Aws::String &&value)
void SetCopyImageSetInformation(const CopyImageSetInformation &value)
CopyImageSetRequest & WithDatastoreId(Aws::String &&value)
CopyImageSetRequest & WithCopyImageSetInformation(CopyImageSetInformation &&value)
CopyImageSetRequest & WithSourceImageSetId(const Aws::String &value)
CopyImageSetRequest & WithDatastoreId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String