@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:43.514Z") @Stability(value=Experimental) public interface BrokerLogging extends software.amazon.jsii.JsiiSerializable
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.logs.*;
import software.amazon.awscdk.services.msk.*;
import software.amazon.awscdk.services.s3.*;
Bucket bucket;
LogGroup logGroup;
BrokerLogging brokerLogging = BrokerLogging.builder()
.cloudwatchLogGroup(logGroup)
.firehoseDeliveryStreamName("firehoseDeliveryStreamName")
.s3(S3LoggingConfiguration.builder()
.bucket(bucket)
// the properties below are optional
.prefix("prefix")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BrokerLogging.Builder
A builder for
BrokerLogging |
static class |
BrokerLogging.Jsii$Proxy
An implementation for
BrokerLogging |
| Modifier and Type | Method and Description |
|---|---|
static BrokerLogging.Builder |
builder() |
default ILogGroup |
getCloudwatchLogGroup()
(experimental) The CloudWatch Logs group that is the destination for broker logs.
|
default String |
getFirehoseDeliveryStreamName()
(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.
|
@Stability(value=Experimental) @Nullable default ILogGroup getCloudwatchLogGroup()
Default: - disabled
@Stability(value=Experimental) @Nullable default String getFirehoseDeliveryStreamName()
Default: - disabled
@Stability(value=Experimental) @Nullable default S3LoggingConfiguration getS3()
Default: - disabled
@Stability(value=Experimental) static BrokerLogging.Builder builder()
BrokerLogging.Builder of BrokerLoggingCopyright © 2022. All rights reserved.