Interface S3LoggingConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
S3LoggingConfiguration.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.730Z")
@Stability(Experimental)
public interface S3LoggingConfiguration
extends software.amazon.jsii.JsiiSerializable
(experimental) 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.*; import software.amazon.awscdk.services.s3.*; Bucket bucket; S3LoggingConfiguration s3LoggingConfiguration = S3LoggingConfiguration.builder() .bucket(bucket) // the properties below are optional .prefix("prefix") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forS3LoggingConfiguration
static final class
An implementation forS3LoggingConfiguration
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
(experimental) The S3 bucket that is the destination for broker logs. -
getPrefix
(experimental) The S3 prefix that is the destination for broker logs.Default: - no prefix
-
builder
- Returns:
- a
S3LoggingConfiguration.Builder
ofS3LoggingConfiguration
-