public static interface CfnConnector.WorkerLogDeliveryProperty
This configuration specifies the details of these destinations.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.kafkaconnect.*; WorkerLogDeliveryProperty workerLogDeliveryProperty = WorkerLogDeliveryProperty.builder() .cloudWatchLogs(CloudWatchLogsLogDeliveryProperty.builder() .enabled(false) // the properties below are optional .logGroup("logGroup") .build()) .firehose(FirehoseLogDeliveryProperty.builder() .enabled(false) // the properties below are optional .deliveryStream("deliveryStream") .build()) .s3(S3LogDeliveryProperty.builder() .enabled(false) // the properties below are optional .bucket("bucket") .prefix("prefix") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnector.WorkerLogDeliveryProperty.Builder
A builder for
CfnConnector.WorkerLogDeliveryProperty |
static class |
CfnConnector.WorkerLogDeliveryProperty.Jsii$Proxy
An implementation for
CfnConnector.WorkerLogDeliveryProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConnector.WorkerLogDeliveryProperty.Builder |
builder() |
default java.lang.Object |
getCloudWatchLogs()
Details about delivering logs to Amazon CloudWatch Logs.
|
default java.lang.Object |
getFirehose()
Details about delivering logs to Amazon Kinesis Data Firehose.
|
default java.lang.Object |
getS3()
Details about delivering logs to Amazon S3.
|
default java.lang.Object getCloudWatchLogs()
default java.lang.Object getFirehose()
default java.lang.Object getS3()
static CfnConnector.WorkerLogDeliveryProperty.Builder builder()