interface BrokerLogsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.BrokerLogsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_BrokerLogsProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.BrokerLogsProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.BrokerLogsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » BrokerLogsProperty |
The broker logs configuration for this MSK cluster.
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 brokerLogsProperty: msk_mixins.CfnClusterPropsMixin.BrokerLogsProperty = {
cloudWatchLogs: {
enabled: false,
logGroup: 'logGroup',
},
firehose: {
deliveryStream: 'deliveryStream',
enabled: false,
},
s3: {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | |
| firehose? | IResolvable | Firehose | Details of the Kinesis Data Firehose delivery stream that is the destination for broker logs. |
| s3? | IResolvable | S3 | Details of the Amazon S3 destination for broker logs. |
cloudWatchLogs?
Type:
IResolvable | Cloud
(optional)
firehose?
Type:
IResolvable | Firehose
(optional)
Details of the Kinesis Data Firehose delivery stream that is the destination for broker logs.
s3?
Type:
IResolvable | S3
(optional)
Details of the Amazon S3 destination for broker logs.

.NET
Go
Java
Python
TypeScript