interface CloudWatchLogsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.CloudWatchLogsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_CloudWatchLogsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.CloudWatchLogsProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.CloudWatchLogsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » CloudWatchLogsProperty |
Details of the CloudWatch Logs destination for broker logs.
Example
// 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/cfn-property-mixins';
const cloudWatchLogsProperty: msk.CfnClusterPropsMixin.CloudWatchLogsProperty = {
enabled: false,
logGroup: 'logGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Specifies whether broker logs get sent to the specified CloudWatch Logs destination. |
| log | string | ILog | The CloudWatch log group that is the destination for broker logs. |
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether broker logs get sent to the specified CloudWatch Logs destination.
logGroup?
Type:
string | ILog
(optional)
The CloudWatch log group that is the destination for broker logs.

.NET
Go
Java
Python
TypeScript