Interface AudioBlock.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<AudioBlock.Builder,,AudioBlock> SdkBuilder<AudioBlock.Builder,,AudioBlock> SdkPojo
- Enclosing class:
AudioBlock
-
Method Summary
Modifier and TypeMethodDescriptiondefault AudioBlock.Buildererror(Consumer<ErrorBlock.Builder> error) Error information if the audio block could not be processed or contains invalid data.error(ErrorBlock error) Error information if the audio block could not be processed or contains invalid data.The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.format(AudioFormat format) The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.default AudioBlock.Buildersource(Consumer<AudioSource.Builder> source) The source of the audio data, which can be provided as raw bytes or an S3 location.source(AudioSource source) The source of the audio data, which can be provided as raw bytes or an S3 location.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
format
The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.
- Parameters:
format- The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
format
The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.
- Parameters:
format- The format of the audio data, such as MP3, WAV, FLAC, or other supported audio formats.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
source
The source of the audio data, which can be provided as raw bytes or an S3 location.
- Parameters:
source- The source of the audio data, which can be provided as raw bytes or an S3 location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
The source of the audio data, which can be provided as raw bytes or an S3 location.
This is a convenience method that creates an instance of theAudioSource.Builderavoiding the need to create one manually viaAudioSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosource(AudioSource).- Parameters:
source- a consumer that will call methods onAudioSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
error
Error information if the audio block could not be processed or contains invalid data.
- Parameters:
error- Error information if the audio block could not be processed or contains invalid data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
Error information if the audio block could not be processed or contains invalid data.
This is a convenience method that creates an instance of theErrorBlock.Builderavoiding the need to create one manually viaErrorBlock.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerror(ErrorBlock).- Parameters:
error- a consumer that will call methods onErrorBlock.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-