Class: Aws::MedicalImaging::Types::MetadataUpdates
- Inherits:
-
Struct
- Object
- Struct
- Aws::MedicalImaging::Types::MetadataUpdates
- Defined in:
- gems/aws-sdk-medicalimaging/lib/aws-sdk-medicalimaging/types.rb
Overview
Note:
MetadataUpdates is a union - when making an API calls you must set exactly one of the members.
Contains DICOMUpdates.
Direct Known Subclasses
Defined Under Namespace
Classes: DicomUpdates, RevertToVersionId, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dicom_updates ⇒ Types::DICOMUpdates
The object containing
removableAttributesandupdatableAttributes. -
#revert_to_version_id ⇒ String
Specifies the previous image set version ID to revert the current image set back to.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#dicom_updates ⇒ Types::DICOMUpdates
The object containing removableAttributes and
updatableAttributes.
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-medicalimaging/lib/aws-sdk-medicalimaging/types.rb', line 1344 class MetadataUpdates < Struct.new( :dicom_updates, :revert_to_version_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DicomUpdates < MetadataUpdates; end class RevertToVersionId < MetadataUpdates; end class Unknown < MetadataUpdates; end end |
#revert_to_version_id ⇒ String
Specifies the previous image set version ID to revert the current image set back to.
revertToVersionId or DICOMUpdates in
your request. A ValidationException error is thrown if both
parameters are provided at the same time.
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-medicalimaging/lib/aws-sdk-medicalimaging/types.rb', line 1344 class MetadataUpdates < Struct.new( :dicom_updates, :revert_to_version_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DicomUpdates < MetadataUpdates; end class RevertToVersionId < MetadataUpdates; end class Unknown < MetadataUpdates; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1344 1345 1346 |
# File 'gems/aws-sdk-medicalimaging/lib/aws-sdk-medicalimaging/types.rb', line 1344 def unknown @unknown end |