interface S3LogDeliveryProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.KafkaConnect.CfnConnector.S3LogDeliveryProperty |
Java | software.amazon.awscdk.services.kafkaconnect.CfnConnector.S3LogDeliveryProperty |
Python | aws_cdk.aws_kafkaconnect.CfnConnector.S3LogDeliveryProperty |
TypeScript | @aws-cdk/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 * as kafkaconnect from '@aws-cdk/aws-kafkaconnect';
const s3LogDeliveryProperty: kafkaconnect.CfnConnector.S3LogDeliveryProperty = {
enabled: false,
// the properties below are optional
bucket: 'bucket',
prefix: 'prefix',
};
Properties
Name | Type | Description |
---|---|---|
enabled | boolean | IResolvable | Specifies whether connector logs get sent to the specified Amazon S3 destination. |
bucket? | string | The name of the S3 bucket that is the destination for log delivery. |
prefix? | string | The 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.