Interface WavSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WavSettings.Builder,WavSettings>,SdkBuilder<WavSettings.Builder,WavSettings>,SdkPojo
- Enclosing class:
- WavSettings
public static interface WavSettings.Builder extends SdkPojo, CopyableBuilder<WavSettings.Builder,WavSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WavSettings.BuilderbitDepth(Double bitDepth)Bits per sample.WavSettings.BuildercodingMode(String codingMode)The audio coding mode for the WAV audio.WavSettings.BuildercodingMode(WavCodingMode codingMode)The audio coding mode for the WAV audio.WavSettings.BuildersampleRate(Double sampleRate)Sample rate in Hz.-
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
-
bitDepth
WavSettings.Builder bitDepth(Double bitDepth)
Bits per sample.- Parameters:
bitDepth- Bits per sample.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codingMode
WavSettings.Builder codingMode(String codingMode)
The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.- Parameters:
codingMode- The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WavCodingMode,WavCodingMode
-
codingMode
WavSettings.Builder codingMode(WavCodingMode codingMode)
The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.- Parameters:
codingMode- The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WavCodingMode,WavCodingMode
-
sampleRate
WavSettings.Builder sampleRate(Double sampleRate)
Sample rate in Hz.- Parameters:
sampleRate- Sample rate in Hz.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-