Interface CfnCluster.S3Property

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

@Stability(Stable) public static interface CfnCluster.S3Property extends software.amazon.jsii.JsiiSerializable
The details of the Amazon S3 destination for broker logs.

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

See Also: