Interface CfnBot.GrammarSlotTypeSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.GrammarSlotTypeSourceProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.GrammarSlotTypeSourceProperty extends software.amazon.jsii.JsiiSerializable
Describes the Amazon S3 bucket name and location for the grammar that is the source for the slot type.

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.*;
 GrammarSlotTypeSourceProperty grammarSlotTypeSourceProperty = GrammarSlotTypeSourceProperty.builder()
         .s3BucketName("s3BucketName")
         .s3ObjectKey("s3ObjectKey")
         // the properties below are optional
         .kmsKeyArn("kmsKeyArn")
         .build();