interface LogDeliveryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.LogDeliveryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_LogDeliveryProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.LogDeliveryProperty |
Python | aws_cdk.aws_msk.CfnReplicator.LogDeliveryProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » LogDeliveryProperty |
Configuration for log delivery for the replicator.
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 logDeliveryProperty: msk.CfnReplicator.LogDeliveryProperty = {
replicatorLogDelivery: {
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 |
|---|---|---|
| replicator | IResolvable | Replicator | Details of the log delivery for the replicator. |
replicatorLogDelivery?
Type:
IResolvable | Replicator
(optional)
Details of the log delivery for the replicator.

.NET
Go
Java
Python
TypeScript