Interface S3LoggingConfiguration

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.730Z") @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();