Interface S3LoggingConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
S3LoggingConfiguration.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:50.252Z")
@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.V4_1_X_KRAFT)
.vpc(vpc)
.logging(BrokerLogging.builder()
.s3(S3LoggingConfiguration.builder()
.bucket(bucket)
.build())
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forS3LoggingConfigurationstatic final classAn implementation forS3LoggingConfiguration -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
(experimental) The S3 bucket that is the destination for broker logs. -
getPrefix
(experimental) The S3 prefix that is the destination for broker logs.Default: - no prefix
-
builder
- Returns:
- a
S3LoggingConfiguration.BuilderofS3LoggingConfiguration
-