Interface MedicalEntity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MedicalEntity.Builder,MedicalEntity>,SdkBuilder<MedicalEntity.Builder,MedicalEntity>,SdkPojo
- Enclosing class:
- MedicalEntity
@Mutable @NotThreadSafe public static interface MedicalEntity.Builder extends SdkPojo, CopyableBuilder<MedicalEntity.Builder,MedicalEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MedicalEntity.Buildercategory(String category)The category of information identified.MedicalEntity.Builderconfidence(Double confidence)The confidence score associated with the identified PHI entity in your audio.MedicalEntity.Buildercontent(String content)The word or words identified as PHI.MedicalEntity.BuilderendTime(Double endTime)The end time, in seconds, of the utterance that was identified as PHI.MedicalEntity.BuilderstartTime(Double startTime)The start time, in seconds, of the utterance that was identified as PHI.-
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
-
startTime
MedicalEntity.Builder startTime(Double startTime)
The start time, in seconds, of the utterance that was identified as PHI.
- Parameters:
startTime- The start time, in seconds, of the utterance that was identified as PHI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
MedicalEntity.Builder endTime(Double endTime)
The end time, in seconds, of the utterance that was identified as PHI.
- Parameters:
endTime- The end time, in seconds, of the utterance that was identified as PHI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
MedicalEntity.Builder category(String category)
The category of information identified. The only category is
PHI.- Parameters:
category- The category of information identified. The only category isPHI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
MedicalEntity.Builder content(String content)
The word or words identified as PHI.
- Parameters:
content- The word or words identified as PHI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
confidence
MedicalEntity.Builder confidence(Double confidence)
The confidence score associated with the identified PHI entity in your audio.
Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified entity correctly matches the entity spoken in your media.
- Parameters:
confidence- The confidence score associated with the identified PHI entity in your audio.Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified entity correctly matches the entity spoken in your media.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-