AWS SDK for C++

AWS SDK for C++ Version 1.11.608

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() = default;
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 template<typename ImageSetIdT = Aws::String>
51 void SetImageSetId(ImageSetIdT&& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = std::forward<ImageSetIdT>(value); }
52 template<typename ImageSetIdT = Aws::String>
53 CopyDestinationImageSetProperties& WithImageSetId(ImageSetIdT&& value) { SetImageSetId(std::forward<ImageSetIdT>(value)); return *this;}
55
57
60 inline const Aws::String& GetLatestVersionId() const { return m_latestVersionId; }
61 inline bool LatestVersionIdHasBeenSet() const { return m_latestVersionIdHasBeenSet; }
62 template<typename LatestVersionIdT = Aws::String>
63 void SetLatestVersionId(LatestVersionIdT&& value) { m_latestVersionIdHasBeenSet = true; m_latestVersionId = std::forward<LatestVersionIdT>(value); }
64 template<typename LatestVersionIdT = Aws::String>
65 CopyDestinationImageSetProperties& WithLatestVersionId(LatestVersionIdT&& value) { SetLatestVersionId(std::forward<LatestVersionIdT>(value)); return *this;}
67
69
72 inline ImageSetState GetImageSetState() const { return m_imageSetState; }
73 inline bool ImageSetStateHasBeenSet() const { return m_imageSetStateHasBeenSet; }
74 inline void SetImageSetState(ImageSetState value) { m_imageSetStateHasBeenSet = true; m_imageSetState = value; }
77
79
82 inline ImageSetWorkflowStatus GetImageSetWorkflowStatus() const { return m_imageSetWorkflowStatus; }
83 inline bool ImageSetWorkflowStatusHasBeenSet() const { return m_imageSetWorkflowStatusHasBeenSet; }
84 inline void SetImageSetWorkflowStatus(ImageSetWorkflowStatus value) { m_imageSetWorkflowStatusHasBeenSet = true; m_imageSetWorkflowStatus = value; }
87
89
92 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
93 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
94 template<typename CreatedAtT = Aws::Utils::DateTime>
95 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
96 template<typename CreatedAtT = Aws::Utils::DateTime>
97 CopyDestinationImageSetProperties& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
99
101
105 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
106 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
107 template<typename UpdatedAtT = Aws::Utils::DateTime>
108 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
109 template<typename UpdatedAtT = Aws::Utils::DateTime>
110 CopyDestinationImageSetProperties& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
112
114
117 inline const Aws::String& GetImageSetArn() const { return m_imageSetArn; }
118 inline bool ImageSetArnHasBeenSet() const { return m_imageSetArnHasBeenSet; }
119 template<typename ImageSetArnT = Aws::String>
120 void SetImageSetArn(ImageSetArnT&& value) { m_imageSetArnHasBeenSet = true; m_imageSetArn = std::forward<ImageSetArnT>(value); }
121 template<typename ImageSetArnT = Aws::String>
122 CopyDestinationImageSetProperties& WithImageSetArn(ImageSetArnT&& value) { SetImageSetArn(std::forward<ImageSetArnT>(value)); return *this;}
124 private:
125
126 Aws::String m_imageSetId;
127 bool m_imageSetIdHasBeenSet = false;
128
129 Aws::String m_latestVersionId;
130 bool m_latestVersionIdHasBeenSet = false;
131
132 ImageSetState m_imageSetState{ImageSetState::NOT_SET};
133 bool m_imageSetStateHasBeenSet = false;
134
136 bool m_imageSetWorkflowStatusHasBeenSet = false;
137
138 Aws::Utils::DateTime m_createdAt{};
139 bool m_createdAtHasBeenSet = false;
140
141 Aws::Utils::DateTime m_updatedAt{};
142 bool m_updatedAtHasBeenSet = false;
143
144 Aws::String m_imageSetArn;
145 bool m_imageSetArnHasBeenSet = false;
146 };
147
148} // namespace Model
149} // namespace MedicalImaging
150} // namespace Aws
CopyDestinationImageSetProperties & WithImageSetId(ImageSetIdT &&value)
CopyDestinationImageSetProperties & WithImageSetState(ImageSetState value)
AWS_MEDICALIMAGING_API CopyDestinationImageSetProperties()=default
CopyDestinationImageSetProperties & WithLatestVersionId(LatestVersionIdT &&value)
CopyDestinationImageSetProperties & WithImageSetArn(ImageSetArnT &&value)
CopyDestinationImageSetProperties & WithCreatedAt(CreatedAtT &&value)
AWS_MEDICALIMAGING_API CopyDestinationImageSetProperties & operator=(Aws::Utils::Json::JsonView jsonValue)
CopyDestinationImageSetProperties & WithUpdatedAt(UpdatedAtT &&value)
AWS_MEDICALIMAGING_API CopyDestinationImageSetProperties(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const
CopyDestinationImageSetProperties & WithImageSetWorkflowStatus(ImageSetWorkflowStatus value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue