Interface CfnBotAlias.AudioLogDestinationProperty

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

@Stability(Stable) public static interface CfnBotAlias.AudioLogDestinationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the S3 bucket location where audio logs are 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.*;
 AudioLogDestinationProperty audioLogDestinationProperty = AudioLogDestinationProperty.builder()
         .s3Bucket(S3BucketLogDestinationProperty.builder()
                 .logPrefix("logPrefix")
                 .s3BucketArn("s3BucketArn")
                 // the properties below are optional
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .build();
 

See Also: