@Stability(value=Stable)
public static interface CfnConnector.WorkerLogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getCloudWatchLogs()
Details about delivering logs to Amazon CloudWatch Logs.
|
default Object |
getFirehose()
Details about delivering logs to Amazon Kinesis Data Firehose.
|
default Object |
getS3()
Details about delivering logs to Amazon S3.
|
@Stability(value=Stable) @Nullable default Object getCloudWatchLogs()
@Stability(value=Stable) @Nullable default Object getFirehose()
@Stability(value=Stable) @Nullable default Object getS3()
@Stability(value=Stable) static CfnConnector.WorkerLogDeliveryProperty.Builder builder()
Copyright © 2022. All rights reserved.