/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MedicalImaging { namespace Model { /** *

The image set properties.

See Also:

AWS * API Reference

*/ class ImageSetProperties { public: AWS_MEDICALIMAGING_API ImageSetProperties(); AWS_MEDICALIMAGING_API ImageSetProperties(Aws::Utils::Json::JsonView jsonValue); AWS_MEDICALIMAGING_API ImageSetProperties& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The image set identifier.

*/ inline const Aws::String& GetImageSetId() const{ return m_imageSetId; } /** *

The image set identifier.

*/ inline bool ImageSetIdHasBeenSet() const { return m_imageSetIdHasBeenSet; } /** *

The image set identifier.

*/ inline void SetImageSetId(const Aws::String& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = value; } /** *

The image set identifier.

*/ inline void SetImageSetId(Aws::String&& value) { m_imageSetIdHasBeenSet = true; m_imageSetId = std::move(value); } /** *

The image set identifier.

*/ inline void SetImageSetId(const char* value) { m_imageSetIdHasBeenSet = true; m_imageSetId.assign(value); } /** *

The image set identifier.

*/ inline ImageSetProperties& WithImageSetId(const Aws::String& value) { SetImageSetId(value); return *this;} /** *

The image set identifier.

*/ inline ImageSetProperties& WithImageSetId(Aws::String&& value) { SetImageSetId(std::move(value)); return *this;} /** *

The image set identifier.

*/ inline ImageSetProperties& WithImageSetId(const char* value) { SetImageSetId(value); return *this;} /** *

The image set version identifier.

*/ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** *

The image set version identifier.

*/ inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; } /** *

The image set version identifier.

*/ inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; } /** *

The image set version identifier.

*/ inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); } /** *

The image set version identifier.

*/ inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); } /** *

The image set version identifier.

*/ inline ImageSetProperties& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** *

The image set version identifier.

*/ inline ImageSetProperties& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** *

The image set version identifier.

*/ inline ImageSetProperties& WithVersionId(const char* value) { SetVersionId(value); return *this;} /** *

The image set state.

*/ inline const ImageSetState& GetImageSetState() const{ return m_imageSetState; } /** *

The image set state.

*/ inline bool ImageSetStateHasBeenSet() const { return m_imageSetStateHasBeenSet; } /** *

The image set state.

*/ inline void SetImageSetState(const ImageSetState& value) { m_imageSetStateHasBeenSet = true; m_imageSetState = value; } /** *

The image set state.

*/ inline void SetImageSetState(ImageSetState&& value) { m_imageSetStateHasBeenSet = true; m_imageSetState = std::move(value); } /** *

The image set state.

*/ inline ImageSetProperties& WithImageSetState(const ImageSetState& value) { SetImageSetState(value); return *this;} /** *

The image set state.

*/ inline ImageSetProperties& WithImageSetState(ImageSetState&& value) { SetImageSetState(std::move(value)); return *this;} /** *

The image set workflow status.

*/ inline const ImageSetWorkflowStatus& GetImageSetWorkflowStatus() const{ return m_imageSetWorkflowStatus; } /** *

The image set workflow status.

*/ inline bool ImageSetWorkflowStatusHasBeenSet() const { return m_imageSetWorkflowStatusHasBeenSet; } /** *

The image set workflow status.

*/ inline void SetImageSetWorkflowStatus(const ImageSetWorkflowStatus& value) { m_imageSetWorkflowStatusHasBeenSet = true; m_imageSetWorkflowStatus = value; } /** *

The image set workflow status.

*/ inline void SetImageSetWorkflowStatus(ImageSetWorkflowStatus&& value) { m_imageSetWorkflowStatusHasBeenSet = true; m_imageSetWorkflowStatus = std::move(value); } /** *

The image set workflow status.

*/ inline ImageSetProperties& WithImageSetWorkflowStatus(const ImageSetWorkflowStatus& value) { SetImageSetWorkflowStatus(value); return *this;} /** *

The image set workflow status.

*/ inline ImageSetProperties& WithImageSetWorkflowStatus(ImageSetWorkflowStatus&& value) { SetImageSetWorkflowStatus(std::move(value)); return *this;} /** *

The timestamp when the image set properties were created.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

The timestamp when the image set properties were created.

*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *

The timestamp when the image set properties were created.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *

The timestamp when the image set properties were created.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *

The timestamp when the image set properties were created.

*/ inline ImageSetProperties& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

The timestamp when the image set properties were created.

*/ inline ImageSetProperties& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The timestamp when the image set properties were updated.

*/ inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; } /** *

The timestamp when the image set properties were updated.

*/ inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; } /** *

The timestamp when the image set properties were updated.

*/ inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; } /** *

The timestamp when the image set properties were updated.

*/ inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); } /** *

The timestamp when the image set properties were updated.

*/ inline ImageSetProperties& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;} /** *

The timestamp when the image set properties were updated.

*/ inline ImageSetProperties& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;} /** *

The timestamp when the image set properties were deleted.

*/ inline const Aws::Utils::DateTime& GetDeletedAt() const{ return m_deletedAt; } /** *

The timestamp when the image set properties were deleted.

*/ inline bool DeletedAtHasBeenSet() const { return m_deletedAtHasBeenSet; } /** *

The timestamp when the image set properties were deleted.

*/ inline void SetDeletedAt(const Aws::Utils::DateTime& value) { m_deletedAtHasBeenSet = true; m_deletedAt = value; } /** *

The timestamp when the image set properties were deleted.

*/ inline void SetDeletedAt(Aws::Utils::DateTime&& value) { m_deletedAtHasBeenSet = true; m_deletedAt = std::move(value); } /** *

The timestamp when the image set properties were deleted.

*/ inline ImageSetProperties& WithDeletedAt(const Aws::Utils::DateTime& value) { SetDeletedAt(value); return *this;} /** *

The timestamp when the image set properties were deleted.

*/ inline ImageSetProperties& WithDeletedAt(Aws::Utils::DateTime&& value) { SetDeletedAt(std::move(value)); return *this;} /** *

The error message thrown if an image set action fails.

*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *

The error message thrown if an image set action fails.

*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *

The error message thrown if an image set action fails.

*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *

The error message thrown if an image set action fails.

*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *

The error message thrown if an image set action fails.

*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *

The error message thrown if an image set action fails.

*/ inline ImageSetProperties& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *

The error message thrown if an image set action fails.

*/ inline ImageSetProperties& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *

The error message thrown if an image set action fails.

*/ inline ImageSetProperties& WithMessage(const char* value) { SetMessage(value); return *this;} private: Aws::String m_imageSetId; bool m_imageSetIdHasBeenSet = false; Aws::String m_versionId; bool m_versionIdHasBeenSet = false; ImageSetState m_imageSetState; bool m_imageSetStateHasBeenSet = false; ImageSetWorkflowStatus m_imageSetWorkflowStatus; bool m_imageSetWorkflowStatusHasBeenSet = false; Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::Utils::DateTime m_updatedAt; bool m_updatedAtHasBeenSet = false; Aws::Utils::DateTime m_deletedAt; bool m_deletedAtHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws