Interface CfnBotAlias.S3BucketLogDestinationProperty

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

@Stability(Stable) public static interface CfnBotAlias.S3BucketLogDestinationProperty extends software.amazon.jsii.JsiiSerializable
Specifies an Amazon S3 bucket for logging audio conversations.

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.*;
 S3BucketLogDestinationProperty s3BucketLogDestinationProperty = S3BucketLogDestinationProperty.builder()
         .logPrefix("logPrefix")
         .s3BucketArn("s3BucketArn")
         // the properties below are optional
         .kmsKeyArn("kmsKeyArn")
         .build();