Interface CfnBot.UnifiedSpeechSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.UnifiedSpeechSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.UnifiedSpeechSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Unified configuration settings that combine speech recognition and synthesis capabilities.
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.lex.*;
UnifiedSpeechSettingsProperty unifiedSpeechSettingsProperty = UnifiedSpeechSettingsProperty.builder()
.speechFoundationModel(SpeechFoundationModelProperty.builder()
.modelArn("modelArn")
// the properties below are optional
.voiceId("voiceId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.UnifiedSpeechSettingsPropertystatic final classAn implementation forCfnBot.UnifiedSpeechSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The foundation model configuration to use for unified speech processing capabilities.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSpeechFoundationModel
The foundation model configuration to use for unified speech processing capabilities.Returns union: either
IResolvableorCfnBot.SpeechFoundationModelProperty- See Also:
-
builder
-