interface S3LogDeliveryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.S3LogDeliveryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_S3LogDeliveryProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.S3LogDeliveryProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.S3LogDeliveryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » 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 { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const s3LogDeliveryProperty: kafkaconnect_mixins.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