// The code below shows an example of how to instantiate this type.// The values are placeholders you should change.import { aws_msk as msk } from'aws-cdk-lib';
const loggingInfoProperty: msk.CfnCluster.LoggingInfoProperty = {
brokerLogs: {
cloudWatchLogs: {
enabled: false,
// the properties below are optional
logGroup: 'logGroup',
},
firehose: {
enabled: false,
// the properties below are optional
deliveryStream: 'deliveryStream',
},
s3: {
enabled: false,
// the properties below are optional
bucket: 'bucket',
prefix: 'prefix',
},
},
};