Interface CfnBot.AudioLogDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.AudioLogDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.AudioLogDestinationProperty
extends software.amazon.jsii.JsiiSerializable
The location of audio log files collected when conversation logging is enabled for a bot.
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.*; AudioLogDestinationProperty audioLogDestinationProperty = AudioLogDestinationProperty.builder() .s3Bucket(S3BucketLogDestinationProperty.builder() .logPrefix("logPrefix") .s3BucketArn("s3BucketArn") // the properties below are optional .kmsKeyArn("kmsKeyArn") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.AudioLogDestinationProperty
static final class
An implementation forCfnBot.AudioLogDestinationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies the Amazon S3 bucket where the audio files are stored.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
Specifies the Amazon S3 bucket where the audio files are stored. -
builder
-