interface LogDeliveryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.LogDeliveryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_LogDeliveryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.LogDeliveryProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.LogDeliveryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » 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/cfn-property-mixins';
const logDeliveryProperty: msk.CfnReplicatorPropsMixin.LogDeliveryProperty = {
replicatorLogDelivery: {
cloudWatchLogs: {
enabled: false,
logGroup: 'logGroup',
},
firehose: {
deliveryStream: 'deliveryStream',
enabled: false,
},
s3: {
bucket: 'bucket',
enabled: false,
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