Interface CfnClusterPropsMixin.ILoggingInfoProperty
You can configure your MSK cluster to send broker logs to different destination types.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MSK
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnClusterPropsMixin.ILoggingInfoProperty
Syntax (vb)
Public Interface CfnClusterPropsMixin.ILoggingInfoProperty
Remarks
This is a container for the configuration details related to broker logs.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MSK;
var loggingInfoProperty = new LoggingInfoProperty {
BrokerLogs = new BrokerLogsProperty {
CloudWatchLogs = new CloudWatchLogsProperty {
Enabled = false,
LogGroup = "logGroup"
},
Firehose = new FirehoseProperty {
DeliveryStream = "deliveryStream",
Enabled = false
},
S3 = new S3Property {
Bucket = "bucket",
Enabled = false,
Prefix = "prefix"
}
}
};
Synopsis
Properties
| BrokerLogs | You can configure your MSK cluster to send broker logs to different destination types. |
Properties
BrokerLogs
You can configure your MSK cluster to send broker logs to different destination types.
object? BrokerLogs { get; }
Property Value
Remarks
This configuration specifies the details of these destinations.
Type union: either IResolvable or CfnClusterPropsMixin.IBrokerLogsProperty