interface S3LogDeliveryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.S3LogDeliveryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_S3LogDeliveryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.S3LogDeliveryProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.S3LogDeliveryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » CfnConnectorPropsMixin » 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/cfn-property-mixins';
const s3LogDeliveryProperty: kafkaconnect.CfnConnectorPropsMixin.S3LogDeliveryProperty = {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket that is the destination for log delivery. |
| enabled? | boolean | IResolvable | Specifies whether connector logs get sent to the specified Amazon S3 destination. |
| prefix? | string | The S3 prefix that is the destination for log delivery. |
bucket?
Type:
string
(optional)
The name of the S3 bucket that is the destination for log delivery.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether connector logs get sent to the specified Amazon S3 destination.
prefix?
Type:
string
(optional)
The S3 prefix that is the destination for log delivery.

.NET
Go
Java
Python
TypeScript