Interface SearchByAttributeValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchByAttributeValue.Builder,SearchByAttributeValue>,SdkBuilder<SearchByAttributeValue.Builder,SearchByAttributeValue>,SdkPojo
- Enclosing class:
- SearchByAttributeValue
public static interface SearchByAttributeValue.Builder extends SdkPojo, CopyableBuilder<SearchByAttributeValue.Builder,SearchByAttributeValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SearchByAttributeValue.BuildercreatedAt(Instant createdAt)The created at time of the image set provided for search.SearchByAttributeValue.BuilderdicomAccessionNumber(String dicomAccessionNumber)The DICOM accession number for search.SearchByAttributeValue.BuilderdicomPatientId(String dicomPatientId)The patient ID input for search.default SearchByAttributeValue.BuilderdicomStudyDateAndTime(Consumer<DICOMStudyDateAndTime.Builder> dicomStudyDateAndTime)The aggregated structure containing DICOM study date and study time for search.SearchByAttributeValue.BuilderdicomStudyDateAndTime(DICOMStudyDateAndTime dicomStudyDateAndTime)The aggregated structure containing DICOM study date and study time for search.SearchByAttributeValue.BuilderdicomStudyId(String dicomStudyId)The DICOM study ID for search.SearchByAttributeValue.BuilderdicomStudyInstanceUID(String dicomStudyInstanceUID)The DICOM study instance UID for search.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
dicomPatientId
SearchByAttributeValue.Builder dicomPatientId(String dicomPatientId)
The patient ID input for search.
- Parameters:
dicomPatientId- The patient ID input for search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dicomAccessionNumber
SearchByAttributeValue.Builder dicomAccessionNumber(String dicomAccessionNumber)
The DICOM accession number for search.
- Parameters:
dicomAccessionNumber- The DICOM accession number for search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dicomStudyId
SearchByAttributeValue.Builder dicomStudyId(String dicomStudyId)
The DICOM study ID for search.
- Parameters:
dicomStudyId- The DICOM study ID for search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dicomStudyInstanceUID
SearchByAttributeValue.Builder dicomStudyInstanceUID(String dicomStudyInstanceUID)
The DICOM study instance UID for search.
- Parameters:
dicomStudyInstanceUID- The DICOM study instance UID for search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
SearchByAttributeValue.Builder createdAt(Instant createdAt)
The created at time of the image set provided for search.
- Parameters:
createdAt- The created at time of the image set provided for search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dicomStudyDateAndTime
SearchByAttributeValue.Builder dicomStudyDateAndTime(DICOMStudyDateAndTime dicomStudyDateAndTime)
The aggregated structure containing DICOM study date and study time for search.
- Parameters:
dicomStudyDateAndTime- The aggregated structure containing DICOM study date and study time for search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dicomStudyDateAndTime
default SearchByAttributeValue.Builder dicomStudyDateAndTime(Consumer<DICOMStudyDateAndTime.Builder> dicomStudyDateAndTime)
The aggregated structure containing DICOM study date and study time for search.
This is a convenience method that creates an instance of theDICOMStudyDateAndTime.Builderavoiding the need to create one manually viaDICOMStudyDateAndTime.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todicomStudyDateAndTime(DICOMStudyDateAndTime).- Parameters:
dicomStudyDateAndTime- a consumer that will call methods onDICOMStudyDateAndTime.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dicomStudyDateAndTime(DICOMStudyDateAndTime)
-
-