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

The object containing removableAttributes and * updatableAttributes.

See Also:

AWS * API Reference

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

The DICOM tags to be removed from ImageSetMetadata.

*/ inline const Aws::Utils::CryptoBuffer& GetRemovableAttributes() const{ return m_removableAttributes; } /** *

The DICOM tags to be removed from ImageSetMetadata.

*/ inline bool RemovableAttributesHasBeenSet() const { return m_removableAttributesHasBeenSet; } /** *

The DICOM tags to be removed from ImageSetMetadata.

*/ inline void SetRemovableAttributes(const Aws::Utils::CryptoBuffer& value) { m_removableAttributesHasBeenSet = true; m_removableAttributes = value; } /** *

The DICOM tags to be removed from ImageSetMetadata.

*/ inline void SetRemovableAttributes(Aws::Utils::CryptoBuffer&& value) { m_removableAttributesHasBeenSet = true; m_removableAttributes = std::move(value); } /** *

The DICOM tags to be removed from ImageSetMetadata.

*/ inline DICOMUpdates& WithRemovableAttributes(const Aws::Utils::CryptoBuffer& value) { SetRemovableAttributes(value); return *this;} /** *

The DICOM tags to be removed from ImageSetMetadata.

*/ inline DICOMUpdates& WithRemovableAttributes(Aws::Utils::CryptoBuffer&& value) { SetRemovableAttributes(std::move(value)); return *this;} /** *

The DICOM tags that need to be updated in ImageSetMetadata.

*/ inline const Aws::Utils::CryptoBuffer& GetUpdatableAttributes() const{ return m_updatableAttributes; } /** *

The DICOM tags that need to be updated in ImageSetMetadata.

*/ inline bool UpdatableAttributesHasBeenSet() const { return m_updatableAttributesHasBeenSet; } /** *

The DICOM tags that need to be updated in ImageSetMetadata.

*/ inline void SetUpdatableAttributes(const Aws::Utils::CryptoBuffer& value) { m_updatableAttributesHasBeenSet = true; m_updatableAttributes = value; } /** *

The DICOM tags that need to be updated in ImageSetMetadata.

*/ inline void SetUpdatableAttributes(Aws::Utils::CryptoBuffer&& value) { m_updatableAttributesHasBeenSet = true; m_updatableAttributes = std::move(value); } /** *

The DICOM tags that need to be updated in ImageSetMetadata.

*/ inline DICOMUpdates& WithUpdatableAttributes(const Aws::Utils::CryptoBuffer& value) { SetUpdatableAttributes(value); return *this;} /** *

The DICOM tags that need to be updated in ImageSetMetadata.

*/ inline DICOMUpdates& WithUpdatableAttributes(Aws::Utils::CryptoBuffer&& value) { SetUpdatableAttributes(std::move(value)); return *this;} private: Aws::Utils::CryptoBuffer m_removableAttributes; bool m_removableAttributesHasBeenSet = false; Aws::Utils::CryptoBuffer m_updatableAttributes; bool m_updatableAttributesHasBeenSet = false; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws