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();
 

See Also: