Class: Aws::MedicalImaging::Types::DICOMStudyDateAndTime
- Inherits:
-
Struct
- Object
- Struct
- Aws::MedicalImaging::Types::DICOMStudyDateAndTime
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medicalimaging/types.rb
Overview
The aggregated structure to store DICOM study date and study time for search capabilities.
Constant Summary collapse
- SENSITIVE =
[:dicom_study_date, :dicom_study_time]
Instance Attribute Summary collapse
-
#dicom_study_date ⇒ String
The DICOM study date provided in ‘yyMMdd` format.
-
#dicom_study_time ⇒ String
The DICOM study time provided in ‘HHmmss.FFFFFF` format.
Instance Attribute Details
#dicom_study_date ⇒ String
The DICOM study date provided in ‘yyMMdd` format.
414 415 416 417 418 419 |
# File 'lib/aws-sdk-medicalimaging/types.rb', line 414 class DICOMStudyDateAndTime < Struct.new( :dicom_study_date, :dicom_study_time) SENSITIVE = [:dicom_study_date, :dicom_study_time] include Aws::Structure end |
#dicom_study_time ⇒ String
The DICOM study time provided in ‘HHmmss.FFFFFF` format.
414 415 416 417 418 419 |
# File 'lib/aws-sdk-medicalimaging/types.rb', line 414 class DICOMStudyDateAndTime < Struct.new( :dicom_study_date, :dicom_study_time) SENSITIVE = [:dicom_study_date, :dicom_study_time] include Aws::Structure end |