interface LoggingInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.LoggingInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_LoggingInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.LoggingInfoProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.LoggingInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » LoggingInfoProperty |
You can configure your MSK cluster to send broker logs to different destination types.
This is a container for the configuration details related to broker logs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const loggingInfoProperty: msk_mixins.CfnClusterPropsMixin.LoggingInfoProperty = {
brokerLogs: {
cloudWatchLogs: {
enabled: false,
logGroup: 'logGroup',
},
firehose: {
deliveryStream: 'deliveryStream',
enabled: false,
},
s3: {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| broker | IResolvable | Broker | You can configure your MSK cluster to send broker logs to different destination types. |
brokerLogs?
Type:
IResolvable | Broker
(optional)
You can configure your MSK cluster to send broker logs to different destination types.
This configuration specifies the details of these destinations.

.NET
Go
Java
Python
TypeScript