Interface CfnClusterPropsMixin.S3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.S3Property.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.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.cfnpropertymixins.services.msk.*;
S3Property s3Property = S3Property.builder()
.bucket("bucket")
.enabled(false)
.prefix("prefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.S3Propertystatic final classAn implementation forCfnClusterPropsMixin.S3Property -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the S3 bucket that is the destination for broker logs.- See Also:
-
getEnabled
Specifies whether broker logs get sent to the specified Amazon S3 destination.Returns union: either
BooleanorIResolvable- See Also:
-
getPrefix
The S3 prefix that is the destination for broker logs.- See Also:
-
builder
-