Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-logginginfo.html

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

object

Remarks

This configuration specifies the details of these destinations.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-logginginfo.html#cfn-msk-cluster-logginginfo-brokerlogs

Type union: either IResolvable or CfnClusterPropsMixin.IBrokerLogsProperty

Back to top Generated by DocFX