Interface CfnBot.VoiceSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.VoiceSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.VoiceSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Defines settings for using an Amazon Polly voice to communicate with a user.
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.*; VoiceSettingsProperty voiceSettingsProperty = VoiceSettingsProperty.builder() .voiceId("voiceId") // the properties below are optional .engine("engine") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.VoiceSettingsProperty
static final class
An implementation forCfnBot.VoiceSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVoiceId
The identifier of the Amazon Polly voice to use. -
getEngine
Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user.For more information, see the
engine
parameter of theSynthesizeSpeech
operation in the Amazon Polly developer guide .If you do not specify a value, the default is
standard
. -
builder
-