Interface MedicalScribeTranscriptItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MedicalScribeTranscriptItem.Builder,MedicalScribeTranscriptItem>,SdkBuilder<MedicalScribeTranscriptItem.Builder,MedicalScribeTranscriptItem>,SdkPojo
- Enclosing class:
- MedicalScribeTranscriptItem
@Mutable @NotThreadSafe public static interface MedicalScribeTranscriptItem.Builder extends SdkPojo, CopyableBuilder<MedicalScribeTranscriptItem.Builder,MedicalScribeTranscriptItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MedicalScribeTranscriptItem.BuilderbeginAudioTime(Double beginAudioTime)The start time, in milliseconds, of the transcribed item.MedicalScribeTranscriptItem.Builderconfidence(Double confidence)The confidence score associated with a word or phrase in your transcript.MedicalScribeTranscriptItem.Buildercontent(String content)The word, phrase or punctuation mark that was transcribed.MedicalScribeTranscriptItem.BuilderendAudioTime(Double endAudioTime)The end time, in milliseconds, of the transcribed item.MedicalScribeTranscriptItem.Buildertype(String type)The type of item identified.MedicalScribeTranscriptItem.Buildertype(MedicalScribeTranscriptItemType type)The type of item identified.MedicalScribeTranscriptItem.BuildervocabularyFilterMatch(Boolean vocabularyFilterMatch)Indicates whether the specified item matches a word in the vocabulary filter included in your configuration event.-
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
-
beginAudioTime
MedicalScribeTranscriptItem.Builder beginAudioTime(Double beginAudioTime)
The start time, in milliseconds, of the transcribed item.
- Parameters:
beginAudioTime- The start time, in milliseconds, of the transcribed item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endAudioTime
MedicalScribeTranscriptItem.Builder endAudioTime(Double endAudioTime)
The end time, in milliseconds, of the transcribed item.
- Parameters:
endAudioTime- The end time, in milliseconds, of the transcribed item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
MedicalScribeTranscriptItem.Builder type(String type)
The type of item identified. Options are:
PRONUNCIATION(spoken words) andPUNCTUATION.- Parameters:
type- The type of item identified. Options are:PRONUNCIATION(spoken words) andPUNCTUATION.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MedicalScribeTranscriptItemType,MedicalScribeTranscriptItemType
-
type
MedicalScribeTranscriptItem.Builder type(MedicalScribeTranscriptItemType type)
The type of item identified. Options are:
PRONUNCIATION(spoken words) andPUNCTUATION.- Parameters:
type- The type of item identified. Options are:PRONUNCIATION(spoken words) andPUNCTUATION.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MedicalScribeTranscriptItemType,MedicalScribeTranscriptItemType
-
confidence
MedicalScribeTranscriptItem.Builder confidence(Double confidence)
The confidence score associated with a word or phrase in your transcript.
Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified item correctly matches the item spoken in your media.
- Parameters:
confidence- The confidence score associated with a word or phrase in your transcript.Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified item correctly matches the item spoken in your media.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
MedicalScribeTranscriptItem.Builder content(String content)
The word, phrase or punctuation mark that was transcribed.
- Parameters:
content- The word, phrase or punctuation mark that was transcribed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vocabularyFilterMatch
MedicalScribeTranscriptItem.Builder vocabularyFilterMatch(Boolean vocabularyFilterMatch)
Indicates whether the specified item matches a word in the vocabulary filter included in your configuration event. If
true, there is a vocabulary filter match.- Parameters:
vocabularyFilterMatch- Indicates whether the specified item matches a word in the vocabulary filter included in your configuration event. Iftrue, there is a vocabulary filter match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-