interface CloudWatchLogsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.CloudWatchLogsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_CloudWatchLogsProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.CloudWatchLogsProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.CloudWatchLogsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const cloudWatchLogsProperty: msk_mixins.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 | 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
(optional)
The CloudWatch log group that is the destination for broker logs.

.NET
Go
Java
Python
TypeScript