interface WavSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.WavSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_WavSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.WavSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.WavSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » WavSettingsProperty |
The setup of WAV audio in the output.
The parent of this entity is AudioCodecSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const wavSettingsProperty: medialive_mixins.CfnChannelPropsMixin.WavSettingsProperty = {
bitDepth: 123,
codingMode: 'codingMode',
sampleRate: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| bit | number | Bits per sample. |
| coding | string | The audio coding mode for the WAV audio. |
| sample | number | Sample rate in Hz. |
bitDepth?
Type:
number
(optional)
Bits per sample.
codingMode?
Type:
string
(optional)
The audio coding mode for the WAV audio.
The mode determines the number of channels in the audio.
sampleRate?
Type:
number
(optional)
Sample rate in Hz.

.NET
Go
Java
Python
TypeScript