Interface CfnReplicator.LogDeliveryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicator.LogDeliveryProperty.Jsii$Proxy
Enclosing class:
CfnReplicator

@Stability(Stable) public static interface CfnReplicator.LogDeliveryProperty extends software.amazon.jsii.JsiiSerializable
Configuration for log delivery for the replicator.

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.msk.*;
 LogDeliveryProperty logDeliveryProperty = LogDeliveryProperty.builder()
         .replicatorLogDelivery(ReplicatorLogDeliveryProperty.builder()
                 .cloudWatchLogs(CloudWatchLogsProperty.builder()
                         .enabled(false)
                         // the properties below are optional
                         .logGroup("logGroup")
                         .build())
                 .firehose(FirehoseProperty.builder()
                         .enabled(false)
                         // the properties below are optional
                         .deliveryStream("deliveryStream")
                         .build())
                 .s3(S3Property.builder()
                         .enabled(false)
                         // the properties below are optional
                         .bucket("bucket")
                         .prefix("prefix")
                         .build())
                 .build())
         .build();
 

See Also: