@Stability(value=Stable)
public static interface CfnConnector.LogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
LogDeliveryProperty logDeliveryProperty = LogDeliveryProperty.builder()
.workerLogDelivery(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())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnector.LogDeliveryProperty.Builder
A builder for
CfnConnector.LogDeliveryProperty |
static class |
CfnConnector.LogDeliveryProperty.Jsii$Proxy
An implementation for
CfnConnector.LogDeliveryProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnector.LogDeliveryProperty.Builder |
builder() |
Object |
getWorkerLogDelivery()
The workers can send worker logs to different destination types.
|
@Stability(value=Stable) @NotNull Object getWorkerLogDelivery()
This configuration specifies the details of these destinations.
@Stability(value=Stable) static CfnConnector.LogDeliveryProperty.Builder builder()
Copyright © 2022. All rights reserved.