Interface CfnBot.GrammarSlotTypeSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.GrammarSlotTypeSettingProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.GrammarSlotTypeSettingProperty
extends software.amazon.jsii.JsiiSerializable
Settings requried for a slot type based on a grammar that you provide.
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.*;
GrammarSlotTypeSettingProperty grammarSlotTypeSettingProperty = GrammarSlotTypeSettingProperty.builder()
.source(GrammarSlotTypeSourceProperty.builder()
.s3BucketName("s3BucketName")
.s3ObjectKey("s3ObjectKey")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.GrammarSlotTypeSettingPropertystatic final classAn implementation forCfnBot.GrammarSlotTypeSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSource
The source of the grammar used to create the slot type.- See Also:
-
builder
-