@Stability(value=Stable)
public static interface CfnBot.GrammarSlotTypeSourceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBot.GrammarSlotTypeSourceProperty.Builder
A builder for
CfnBot.GrammarSlotTypeSourceProperty |
static class |
CfnBot.GrammarSlotTypeSourceProperty.Jsii$Proxy
An implementation for
CfnBot.GrammarSlotTypeSourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBot.GrammarSlotTypeSourceProperty.Builder |
builder() |
default String |
getKmsKeyArn()
The AWS Key Management Service key required to decrypt the contents of the grammar, if any.
|
String |
getS3BucketName()
The name of the S3 bucket that contains the grammar source.
|
String |
getS3ObjectKey()
The path to the grammar in the S3 bucket.
|
@Stability(value=Stable) @NotNull String getS3BucketName()
@Stability(value=Stable) @NotNull String getS3ObjectKey()
@Stability(value=Stable) @Nullable default String getKmsKeyArn()
@Stability(value=Stable) static CfnBot.GrammarSlotTypeSourceProperty.Builder builder()
Copyright © 2022. All rights reserved.