Interface S3LoggingConfiguration

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
S3LoggingConfiguration.Jsii$Proxy

@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-31T18:44:14.326Z") @Stability(Experimental) public interface S3LoggingConfiguration extends software.amazon.jsii.JsiiSerializable
(experimental) Details of the Amazon S3 destination for broker logs.

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.msk.*;
 import software.amazon.awscdk.services.s3.*;
 Bucket bucket;
 S3LoggingConfiguration s3LoggingConfiguration = S3LoggingConfiguration.builder()
         .bucket(bucket)
         // the properties below are optional
         .prefix("prefix")
         .build();