Interface CfnConnector.S3LogDeliveryProperty

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

@Stability(Stable) public static interface CfnConnector.S3LogDeliveryProperty extends software.amazon.jsii.JsiiSerializable
Details about delivering logs to Amazon S3.

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.*;
 S3LogDeliveryProperty s3LogDeliveryProperty = S3LogDeliveryProperty.builder()
         .enabled(false)
         // the properties below are optional
         .bucket("bucket")
         .prefix("prefix")
         .build();