Interface CfnConnector.WorkerLogDeliveryProperty

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

@Stability(Stable) public static interface CfnConnector.WorkerLogDeliveryProperty extends software.amazon.jsii.JsiiSerializable
Workers can send worker logs to different destination types.

This configuration specifies the details of these destinations.

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.*;
 WorkerLogDeliveryProperty workerLogDeliveryProperty = 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();