Interface CfnChannel.ChannelLoggingInfoProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.ChannelLoggingInfoProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.ChannelLoggingInfoProperty
extends software.amazon.jsii.JsiiSerializable
Log configuration details for Channel.
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.*;
ChannelLoggingInfoProperty channelLoggingInfoProperty = ChannelLoggingInfoProperty.builder()
.cloudWatchLogs(CloudWatchLogsLogDestinationProperty.builder()
.enabled(false)
// the properties below are optional
.logGroup("logGroup")
.build())
.firehose(FirehoseLogDestinationProperty.builder()
.enabled(false)
// the properties below are optional
.deliveryStream("deliveryStream")
.build())
.s3(S3LogDestinationProperty.builder()
.enabled(false)
// the properties below are optional
.bucket("bucket")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.ChannelLoggingInfoPropertystatic final classAn implementation forCfnChannel.ChannelLoggingInfoProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogs
CloudWatch Logs log destination details.Returns union: either
IResolvableorCfnChannel.CloudWatchLogsLogDestinationProperty- See Also:
-
getFirehose
Firehose log destination details.Returns union: either
IResolvableorCfnChannel.FirehoseLogDestinationProperty- See Also:
-
getS3
S3 log destination details.Returns union: either
IResolvableorCfnChannel.S3LogDestinationProperty- See Also:
-
builder
-