Interface CfnBotPropsMixin.ExternalSourceSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.ExternalSourceSettingProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.ExternalSourceSettingProperty
extends software.amazon.jsii.JsiiSerializable
Provides information about the external source of the slot type's definition.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.lex.*;
ExternalSourceSettingProperty externalSourceSettingProperty = ExternalSourceSettingProperty.builder()
.grammarSlotTypeSetting(GrammarSlotTypeSettingProperty.builder()
.source(GrammarSlotTypeSourceProperty.builder()
.kmsKeyArn("kmsKeyArn")
.s3BucketName("s3BucketName")
.s3ObjectKey("s3ObjectKey")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotPropsMixin.ExternalSourceSettingPropertystatic final classAn implementation forCfnBotPropsMixin.ExternalSourceSettingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGrammarSlotTypeSetting
Settings required for a slot type based on a grammar that you provide.Returns union: either
IResolvableorCfnBotPropsMixin.GrammarSlotTypeSettingProperty- See Also:
-
builder
-