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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forS3LoggingConfiguration
static final class
An 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.Builder
ofS3LoggingConfiguration
-