AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CopyDestinationImageSetProperties.h
1
6#pragma once
7#include <aws/medical-imaging/MedicalImaging_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/medical-imaging/model/ImageSetState.h>
10#include <aws/medical-imaging/model/ImageSetWorkflowStatus.h>
11#include <aws/core/utils/DateTime.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace MedicalImaging
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_MEDICALIMAGING_API CopyDestinationImageSetProperties();
41 AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetImageSetId() const{ return m_imageSetId; }
49 inline bool ImageSetIdHasBeenSet() const { return m_imageSetIdHasBeenSet; }
50 inline void SetImageSetId(const Aws::String& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = value; }
51 inline void SetImageSetId(Aws::String&& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = std::move(value); }
52 inline void SetImageSetId(const char* value) { m_imageSetIdHasBeenSet = true; m_imageSetId.assign(value); }
53 inline CopyDestinationImageSetProperties& WithImageSetId(const Aws::String& value) { SetImageSetId(value); return *this;}
54 inline CopyDestinationImageSetProperties& WithImageSetId(Aws::String&& value) { SetImageSetId(std::move(value)); return *this;}
55 inline CopyDestinationImageSetProperties& WithImageSetId(const char* value) { SetImageSetId(value); return *this;}
57
59
62 inline const Aws::String& GetLatestVersionId() const{ return m_latestVersionId; }
63 inline bool LatestVersionIdHasBeenSet() const { return m_latestVersionIdHasBeenSet; }
64 inline void SetLatestVersionId(const Aws::String& value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId = value; }
65 inline void SetLatestVersionId(Aws::String&& value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId = std::move(value); }
66 inline void SetLatestVersionId(const char* value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId.assign(value); }
68 inline CopyDestinationImageSetProperties& WithLatestVersionId(Aws::String&& value) { SetLatestVersionId(std::move(value)); return *this;}
69 inline CopyDestinationImageSetProperties& WithLatestVersionId(const char* value) { SetLatestVersionId(value); return *this;}
71
73
76 inline const ImageSetState& GetImageSetState() const{ return m_imageSetState; }
77 inline bool ImageSetStateHasBeenSet() const { return m_imageSetStateHasBeenSet; }
78 inline void SetImageSetState(const ImageSetState& value) { m_imageSetStateHasBeenSet = true; m_imageSetState = value; }
79 inline void SetImageSetState(ImageSetState&& value) { m_imageSetStateHasBeenSet = true; m_imageSetState = std::move(value); }
81 inline CopyDestinationImageSetProperties& WithImageSetState(ImageSetState&& value) { SetImageSetState(std::move(value)); return *this;}
83
85
88 inline const ImageSetWorkflowStatus& GetImageSetWorkflowStatus() const{ return m_imageSetWorkflowStatus; }
89 inline bool ImageSetWorkflowStatusHasBeenSet() const { return m_imageSetWorkflowStatusHasBeenSet; }
90 inline void SetImageSetWorkflowStatus(const ImageSetWorkflowStatus& value) { m_imageSetWorkflowStatusHasBeenSet = true; m_imageSetWorkflowStatus = value; }
91 inline void SetImageSetWorkflowStatus(ImageSetWorkflowStatus&& value) { m_imageSetWorkflowStatusHasBeenSet = true; m_imageSetWorkflowStatus = std::move(value); }
95
97
100 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
101 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
102 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
103 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
105 inline CopyDestinationImageSetProperties& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
107
109
113 inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; }
114 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
115 inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; }
116 inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); }
118 inline CopyDestinationImageSetProperties& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;}
120
122
125 inline const Aws::String& GetImageSetArn() const{ return m_imageSetArn; }
126 inline bool ImageSetArnHasBeenSet() const { return m_imageSetArnHasBeenSet; }
127 inline void SetImageSetArn(const Aws::String& value) { m_imageSetArnHasBeenSet = true; m_imageSetArn = value; }
128 inline void SetImageSetArn(Aws::String&& value) { m_imageSetArnHasBeenSet = true; m_imageSetArn = std::move(value); }
129 inline void SetImageSetArn(const char* value) { m_imageSetArnHasBeenSet = true; m_imageSetArn.assign(value); }
131 inline CopyDestinationImageSetProperties& WithImageSetArn(Aws::String&& value) { SetImageSetArn(std::move(value)); return *this;}
132 inline CopyDestinationImageSetProperties& WithImageSetArn(const char* value) { SetImageSetArn(value); return *this;}
134 private:
135
136 Aws::String m_imageSetId;
137 bool m_imageSetIdHasBeenSet = false;
138
139 Aws::String m_latestVersionId;
140 bool m_latestVersionIdHasBeenSet = false;
141
142 ImageSetState m_imageSetState;
143 bool m_imageSetStateHasBeenSet = false;
144
145 ImageSetWorkflowStatus m_imageSetWorkflowStatus;
146 bool m_imageSetWorkflowStatusHasBeenSet = false;
147
148 Aws::Utils::DateTime m_createdAt;
149 bool m_createdAtHasBeenSet = false;
150
151 Aws::Utils::DateTime m_updatedAt;
152 bool m_updatedAtHasBeenSet = false;
153
154 Aws::String m_imageSetArn;
155 bool m_imageSetArnHasBeenSet = false;
156 };
157
158} // namespace Model
159} // namespace MedicalImaging
160} // namespace Aws
CopyDestinationImageSetProperties & WithUpdatedAt(Aws::Utils::DateTime &&value)
CopyDestinationImageSetProperties & WithImageSetWorkflowStatus(const ImageSetWorkflowStatus &value)
CopyDestinationImageSetProperties & WithImageSetState(ImageSetState &&value)
CopyDestinationImageSetProperties & WithImageSetState(const ImageSetState &value)
CopyDestinationImageSetProperties & WithLatestVersionId(Aws::String &&value)
CopyDestinationImageSetProperties & WithImageSetId(const Aws::String &value)
CopyDestinationImageSetProperties & WithUpdatedAt(const Aws::Utils::DateTime &value)
CopyDestinationImageSetProperties & WithImageSetArn(Aws::String &&value)
CopyDestinationImageSetProperties & WithImageSetWorkflowStatus(ImageSetWorkflowStatus &&value)
CopyDestinationImageSetProperties & WithImageSetId(Aws::String &&value)
AWS_MEDICALIMAGING_API CopyDestinationImageSetProperties & operator=(Aws::Utils::Json::JsonView jsonValue)
CopyDestinationImageSetProperties & WithCreatedAt(Aws::Utils::DateTime &&value)
CopyDestinationImageSetProperties & WithImageSetArn(const Aws::String &value)
CopyDestinationImageSetProperties & WithLatestVersionId(const Aws::String &value)
CopyDestinationImageSetProperties & WithLatestVersionId(const char *value)
CopyDestinationImageSetProperties & WithImageSetArn(const char *value)
CopyDestinationImageSetProperties & WithImageSetId(const char *value)
AWS_MEDICALIMAGING_API CopyDestinationImageSetProperties(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const
CopyDestinationImageSetProperties & WithCreatedAt(const Aws::Utils::DateTime &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue