interface CloudWatchLogsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.CloudWatchLogsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_CloudWatchLogsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.CloudWatchLogsProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.CloudWatchLogsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » 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/cfn-property-mixins';
const cloudWatchLogsProperty: msk.CfnReplicatorPropsMixin.CloudWatchLogsProperty = {
enabled: false,
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
(optional)
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