Interface CfnConnectorPropsMixin.S3LogDeliveryProperty

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

@Stability(Stable) public static interface CfnConnectorPropsMixin.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.cfnpropertymixins.services.kafkaconnect.*;
 S3LogDeliveryProperty s3LogDeliveryProperty = S3LogDeliveryProperty.builder()
         .bucket("bucket")
         .enabled(false)
         .prefix("prefix")
         .build();
 

See Also: