interface WavSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.WavSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_WavSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.WavSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.WavSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const wavSettingsProperty: medialive.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