interface CloudWatchLogsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.CloudWatchLogsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_CloudWatchLogsProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.CloudWatchLogsProperty |
Python | aws_cdk.aws_msk.CfnReplicator.CloudWatchLogsProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » CloudWatchLogsProperty |
Details about delivering logs to CloudWatch 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-lib';
const cloudWatchLogsProperty: msk.CfnReplicator.CloudWatchLogsProperty = {
enabled: false,
// the properties below are optional
logGroup: 'logGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | Whether log delivery to CloudWatch Logs is enabled. |
| log | string | The CloudWatch log group that is the destination for log delivery. |
enabled
Type:
boolean | IResolvable
Whether log delivery to CloudWatch Logs is enabled.
logGroup?
Type:
string
(optional)
The CloudWatch log group that is the destination for log delivery.

.NET
Go
Java
Python
TypeScript