Interface CfnReplicator.S3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicator.S3Property.Jsii$Proxy
- Enclosing class:
CfnReplicator
@Stability(Stable)
public static interface CfnReplicator.S3Property
extends software.amazon.jsii.JsiiSerializable
Details about delivering logs to 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.msk.*;
S3Property s3Property = S3Property.builder()
.enabled(false)
// the properties below are optional
.bucket("bucket")
.prefix("prefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicator.S3Propertystatic final classAn implementation forCfnReplicator.S3Property -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Whether log delivery to S3 is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
getBucket
The S3 bucket that is the destination for log delivery.- See Also:
-
getPrefix
The S3 prefix that is the destination for log delivery.- See Also:
-
builder
- Returns:
- a
CfnReplicator.S3Property.BuilderofCfnReplicator.S3Property
-