Interface MedicalScribeContext.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MedicalScribeContext.Builder,MedicalScribeContext>,SdkBuilder<MedicalScribeContext.Builder,MedicalScribeContext>,SdkPojo
- Enclosing class:
- MedicalScribeContext
@Mutable @NotThreadSafe public static interface MedicalScribeContext.Builder extends SdkPojo, CopyableBuilder<MedicalScribeContext.Builder,MedicalScribeContext>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MedicalScribeContext.BuilderpatientContext(Consumer<MedicalScribePatientContext.Builder> patientContext)Contains patient-specific information.MedicalScribeContext.BuilderpatientContext(MedicalScribePatientContext patientContext)Contains patient-specific information.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
patientContext
MedicalScribeContext.Builder patientContext(MedicalScribePatientContext patientContext)
Contains patient-specific information.
- Parameters:
patientContext- Contains patient-specific information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
patientContext
default MedicalScribeContext.Builder patientContext(Consumer<MedicalScribePatientContext.Builder> patientContext)
Contains patient-specific information.
This is a convenience method that creates an instance of theMedicalScribePatientContext.Builderavoiding the need to create one manually viaMedicalScribePatientContext.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topatientContext(MedicalScribePatientContext).- Parameters:
patientContext- a consumer that will call methods onMedicalScribePatientContext.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
patientContext(MedicalScribePatientContext)
-
-