Interface CfnDataAutomationProject.AudioLanguageConfigurationProperty

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

@Stability(Stable) public static interface CfnDataAutomationProject.AudioLanguageConfigurationProperty extends software.amazon.jsii.JsiiSerializable
This allows you to set the input and output language of your audio.

The input language can be set to any of the languages supported by Bedrock Data Automation. The output can either be set to english or whatever the dominant language is of the audio, determined by the language spoken for the most seconds.

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.bedrock.*;
 AudioLanguageConfigurationProperty audioLanguageConfigurationProperty = AudioLanguageConfigurationProperty.builder()
         .generativeOutputLanguage("generativeOutputLanguage")
         .identifyMultipleLanguages(false)
         .inputLanguages(List.of("inputLanguages"))
         .build();
 

See Also: