Interface CfnConnector.CloudWatchLogsLogDeliveryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.CloudWatchLogsLogDeliveryProperty.Jsii$Proxy
- Enclosing class:
- CfnConnector
@Stability(Stable)
public static interface CfnConnector.CloudWatchLogsLogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
The settings for delivering connector logs to Amazon CloudWatch Logs.
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.*;
CloudWatchLogsLogDeliveryProperty cloudWatchLogsLogDeliveryProperty = CloudWatchLogsLogDeliveryProperty.builder()
.enabled(false)
// the properties below are optional
.logGroup("logGroup")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.CloudWatchLogsLogDeliveryPropertystatic final classAn implementation forCfnConnector.CloudWatchLogsLogDeliveryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Whether log delivery to Amazon CloudWatch Logs is enabled. -
getLogGroup
The name of the CloudWatch log group that is the destination for log delivery. -
builder
-