Class MedicalScribeAudioEvent.BuilderImpl
- java.lang.Object
-
- software.amazon.awssdk.services.transcribestreaming.model.MedicalScribeAudioEvent.BuilderImpl
-
- All Implemented Interfaces:
SdkPojo,MedicalScribeAudioEvent.Builder,Buildable,CopyableBuilder<MedicalScribeAudioEvent.Builder,MedicalScribeAudioEvent>,SdkBuilder<MedicalScribeAudioEvent.Builder,MedicalScribeAudioEvent>
- Enclosing class:
- MedicalScribeAudioEvent
protected static class MedicalScribeAudioEvent.BuilderImpl extends Object implements MedicalScribeAudioEvent.Builder
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBuilderImpl()protectedBuilderImpl(MedicalScribeAudioEvent model)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MedicalScribeAudioEvent.BuilderaudioChunk(SdkBytes audioChunk)An audio blob containing the next segment of audio from your application, with a maximum duration of 1 second.MedicalScribeAudioEventbuild()ByteBuffergetAudioChunk()Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()voidsetAudioChunk(ByteBuffer audioChunk)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields
-
-
-
-
Constructor Detail
-
BuilderImpl
protected BuilderImpl()
-
BuilderImpl
protected BuilderImpl(MedicalScribeAudioEvent model)
-
-
Method Detail
-
getAudioChunk
public final ByteBuffer getAudioChunk()
-
setAudioChunk
public final void setAudioChunk(ByteBuffer audioChunk)
-
audioChunk
public final MedicalScribeAudioEvent.Builder audioChunk(SdkBytes audioChunk)
Description copied from interface:MedicalScribeAudioEvent.BuilderAn audio blob containing the next segment of audio from your application, with a maximum duration of 1 second. The maximum size in bytes varies based on audio properties.
Find recommended size in Transcribing streaming best practices.
Size calculation:
Duration (s) * Sample Rate (Hz) * Number of Channels * 2 (Bytes per Sample)For example, a 1-second chunk of 16 kHz, 2-channel, 16-bit audio would be
1 * 16000 * 2 * 2 = 64000 bytes.For 8 kHz, 1-channel, 16-bit audio, a 1-second chunk would be
1 * 8000 * 1 * 2 = 16000 bytes.- Specified by:
audioChunkin interfaceMedicalScribeAudioEvent.Builder- Parameters:
audioChunk- An audio blob containing the next segment of audio from your application, with a maximum duration of 1 second. The maximum size in bytes varies based on audio properties.Find recommended size in Transcribing streaming best practices.
Size calculation:
Duration (s) * Sample Rate (Hz) * Number of Channels * 2 (Bytes per Sample)For example, a 1-second chunk of 16 kHz, 2-channel, 16-bit audio would be
1 * 16000 * 2 * 2 = 64000 bytes.For 8 kHz, 1-channel, 16-bit audio, a 1-second chunk would be
1 * 8000 * 1 * 2 = 16000 bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
build
public MedicalScribeAudioEvent build()
- Specified by:
buildin interfaceBuildable- Specified by:
buildin interfaceSdkBuilder<MedicalScribeAudioEvent.Builder,MedicalScribeAudioEvent>
-
sdkFieldNameToField
public Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-