Interface S3LoggingConfiguration

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-06T23:25:19.098Z") @Stability(Experimental) public interface S3LoggingConfiguration extends software.amazon.jsii.JsiiSerializable
(experimental) Details of the Amazon S3 destination for broker logs.

Example:

 Vpc vpc;
 IBucket bucket;
 Cluster cluster = Cluster.Builder.create(this, "cluster")
         .clusterName("myCluster")
         .kafkaVersion(KafkaVersion.V2_8_1)
         .vpc(vpc)
         .logging(BrokerLogging.builder()
                 .s3(S3LoggingConfiguration.builder()
                         .bucket(bucket)
                         .build())
                 .build())
         .build();