aws-cdk-lib.aws_kafkaconnect.CfnConnector.S3LogDeliveryProperty

interface S3LogDeliveryProperty

LanguageType name
.NETAmazon.CDK.AWS.KafkaConnect.CfnConnector.S3LogDeliveryProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskafkaconnect#CfnConnector_S3LogDeliveryProperty
Javasoftware.amazon.awscdk.services.kafkaconnect.CfnConnector.S3LogDeliveryProperty
Pythonaws_cdk.aws_kafkaconnect.CfnConnector.S3LogDeliveryProperty
TypeScript aws-cdk-lib » aws_kafkaconnect » CfnConnector » S3LogDeliveryProperty

Details about delivering logs to Amazon S3.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kafkaconnect as kafkaconnect } from 'aws-cdk-lib';
const s3LogDeliveryProperty: kafkaconnect.CfnConnector.S3LogDeliveryProperty = {
  enabled: false,

  // the properties below are optional
  bucket: 'bucket',
  prefix: 'prefix',
};

Properties

NameTypeDescription
enabledboolean | IResolvableSpecifies whether connector logs get sent to the specified Amazon S3 destination.
bucket?stringThe name of the S3 bucket that is the destination for log delivery.
prefix?stringThe S3 prefix that is the destination for log delivery.

enabled

Type: boolean | IResolvable

Specifies whether connector logs get sent to the specified Amazon S3 destination.


bucket?

Type: string (optional)

The name of the S3 bucket that is the destination for log delivery.


prefix?

Type: string (optional)

The S3 prefix that is the destination for log delivery.