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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.GrammarSlotTypeSourcePropertystatic final classAn implementation forCfnBot.GrammarSlotTypeSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3BucketName
The name of the Amazon S3 bucket that contains the grammar source.- See Also:
-
getS3ObjectKey
The path to the grammar in the Amazon S3 bucket.- See Also:
-
getKmsKeyArn
The AWS KMS key required to decrypt the contents of the grammar, if any.- See Also:
-
builder
-