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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.S3LogDestinationPropertystatic final classAn implementation forCfnChannel.S3LogDestinationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Whether S3 logging is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
getBucket
The name of the S3 bucket for log delivery.- See Also:
-
getPrefix
The S3 prefix for log delivery.- See Also:
-
builder
-