Interface CfnConnector.LogDeliveryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.LogDeliveryProperty.Jsii$Proxy
- Enclosing class:
- CfnConnector
@Stability(Stable)
public static interface CfnConnector.LogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
Details about log delivery.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.LogDeliveryPropertystatic final classAn implementation forCfnConnector.LogDeliveryProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The workers can send worker logs to different destination types.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWorkerLogDelivery
The workers can send worker logs to different destination types.This configuration specifies the details of these destinations.
-
builder
-