Interface CfnChannel.AacSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.AacSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.AacSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for an AAC audio encode 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 software.amazon.awscdk.services.medialive.*;
 AacSettingsProperty aacSettingsProperty = AacSettingsProperty.builder()
         .bitrate(123)
         .codingMode("codingMode")
         .inputType("inputType")
         .profile("profile")
         .rateControlMode("rateControlMode")
         .rawFormat("rawFormat")
         .sampleRate(123)
         .spec("spec")
         .vbrQuality("vbrQuality")
         .build();
 

See Also: