Interface BrokerLogging
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BrokerLogging.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:08.082Z")
@Stability(Experimental)
public interface BrokerLogging
extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration details related to 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 forBrokerLogging
static final class
An implementation forBrokerLogging
-
Method Summary
Modifier and TypeMethodDescriptionstatic BrokerLogging.Builder
builder()
default ILogGroup
(experimental) The CloudWatch Logs group that is the destination for broker logs.default String
(experimental) The Kinesis Data Firehose delivery stream that is the destination for broker logs.default S3LoggingConfiguration
getS3()
(experimental) Details of the Amazon S3 destination for broker logs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudwatchLogGroup
(experimental) The CloudWatch Logs group that is the destination for broker logs.Default: - disabled
-
getFirehoseDeliveryStreamName
(experimental) The Kinesis Data Firehose delivery stream that is the destination for broker logs.Default: - disabled
-
getS3
(experimental) Details of the Amazon S3 destination for broker logs.Default: - disabled
-
builder
- Returns:
- a
BrokerLogging.Builder
ofBrokerLogging
-