Interface CfnBot.MultipleValuesSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.MultipleValuesSettingProperty.Jsii$Proxy
- Enclosing class:
- CfnBot
@Stability(Stable)
public static interface CfnBot.MultipleValuesSettingProperty
extends software.amazon.jsii.JsiiSerializable
Indicates whether a slot can return multiple values.
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.*;
MultipleValuesSettingProperty multipleValuesSettingProperty = MultipleValuesSettingProperty.builder()
.allowMultipleValues(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.MultipleValuesSettingPropertystatic final classAn implementation forCfnBot.MultipleValuesSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowMultipleValues
Indicates whether a slot can return multiple values.When
true, the slot may return more than one value in a response. Whenfalse, the slot returns only a single value.Multi-value slots are only available in the en-US locale. If you set this value to
truein any other locale, Amazon Lex throws aValidationException.If the
allowMutlipleValuesis not set, the default value isfalse. -
builder
-