Interface CfnChannel.S3LogDestinationProperty

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

@Stability(Stable) public static interface CfnChannel.S3LogDestinationProperty extends software.amazon.jsii.JsiiSerializable
S3 log destination details.

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

See Also: