Interface WavSettingsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WavSettingsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.404Z")
@Stability(Experimental)
public interface WavSettingsProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for WAV codec settings.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.alpha.*;
AudioBitDepth audioBitDepth;
AudioSampleRate audioSampleRate;
WavCodingMode wavCodingMode;
WavSettingsProps wavSettingsProps = WavSettingsProps.builder()
.bitDepth(audioBitDepth)
.codingMode(wavCodingMode)
.sampleRate(audioSampleRate)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWavSettingsPropsstatic final classAn implementation forWavSettingsProps -
Method Summary
Modifier and TypeMethodDescriptionstatic WavSettingsProps.Builderbuilder()default AudioBitDepth(experimental) The bit depth of the WAV output.default WavCodingMode(experimental) The audio coding mode for the WAV audio.default AudioSampleRate(experimental) The sample rate.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBitDepth
(experimental) The bit depth of the WAV output.Default: AudioBitDepth.DEPTH_16
-
getCodingMode
(experimental) The audio coding mode for the WAV audio.Default: WavCodingMode.CODING_MODE_2_0
-
getSampleRate
(experimental) The sample rate.Default: AudioSampleRate.HZ_48000
-
builder
- Returns:
- a
WavSettingsProps.BuilderofWavSettingsProps
-