interface BrokerLogsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.CfnCluster.BrokerLogsProperty |
![]() | software.amazon.awscdk.services.msk.CfnCluster.BrokerLogsProperty |
![]() | aws_cdk.aws_msk.CfnCluster.BrokerLogsProperty |
![]() | @aws-cdk/aws-msk » CfnCluster » 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 * as msk from '@aws-cdk/aws-msk';
const brokerLogsProperty: msk.CfnCluster.BrokerLogsProperty = {
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',
},
};
Properties
Name | Type | Description |
---|---|---|
cloud | IResolvable | Cloud | Details of the CloudWatch Logs destination for broker logs. |
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)
Details of the CloudWatch Logs destination for broker logs.
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.