Interface CfnBotAlias.AudioLogSettingProperty

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

@Stability(Stable) public static interface CfnBotAlias.AudioLogSettingProperty extends software.amazon.jsii.JsiiSerializable
Settings for logging audio of conversations between Amazon Lex and a user.

You specify whether to log audio and the Amazon S3 bucket where the audio file is stored.

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.*;
 AudioLogSettingProperty audioLogSettingProperty = AudioLogSettingProperty.builder()
         .destination(AudioLogDestinationProperty.builder()
                 .s3Bucket(S3BucketLogDestinationProperty.builder()
                         .logPrefix("logPrefix")
                         .s3BucketArn("s3BucketArn")
                         // the properties below are optional
                         .kmsKeyArn("kmsKeyArn")
                         .build())
                 .build())
         .enabled(false)
         .build();