Interface CfnConnector.LogDeliveryProperty

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

@Stability(Stable) public static interface CfnConnector.LogDeliveryProperty extends software.amazon.jsii.JsiiSerializable
Details about log delivery.

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.kafkaconnect.*;
 LogDeliveryProperty logDeliveryProperty = LogDeliveryProperty.builder()
         .workerLogDelivery(WorkerLogDeliveryProperty.builder()
                 .cloudWatchLogs(CloudWatchLogsLogDeliveryProperty.builder()
                         .enabled(false)
                         // the properties below are optional
                         .logGroup("logGroup")
                         .build())
                 .firehose(FirehoseLogDeliveryProperty.builder()
                         .enabled(false)
                         // the properties below are optional
                         .deliveryStream("deliveryStream")
                         .build())
                 .s3(S3LogDeliveryProperty.builder()
                         .enabled(false)
                         // the properties below are optional
                         .bucket("bucket")
                         .prefix("prefix")
                         .build())
                 .build())
         .build();
 

See Also: