Interface CfnReplicator.ReplicatorLogDeliveryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicator.ReplicatorLogDeliveryProperty.Jsii$Proxy
- Enclosing class:
CfnReplicator
@Stability(Stable)
public static interface CfnReplicator.ReplicatorLogDeliveryProperty
extends software.amazon.jsii.JsiiSerializable
Details of the log delivery for the replicator.
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.msk.*;
ReplicatorLogDeliveryProperty replicatorLogDeliveryProperty = ReplicatorLogDeliveryProperty.builder()
.cloudWatchLogs(CloudWatchLogsProperty.builder()
.enabled(false)
// the properties below are optional
.logGroup("logGroup")
.build())
.firehose(FirehoseProperty.builder()
.enabled(false)
// the properties below are optional
.deliveryStream("deliveryStream")
.build())
.s3(S3Property.builder()
.enabled(false)
// the properties below are optional
.bucket("bucket")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicator.ReplicatorLogDeliveryPropertystatic final classAn implementation forCfnReplicator.ReplicatorLogDeliveryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogs
Details about delivering logs to CloudWatch Logs.Returns union: either
IResolvableorCfnReplicator.CloudWatchLogsProperty- See Also:
-
getFirehose
Details about delivering logs to Firehose.Returns union: either
IResolvableorCfnReplicator.FirehoseProperty- See Also:
-
getS3
Details about delivering logs to S3.Returns union: either
IResolvableorCfnReplicator.S3Property- See Also:
-
builder
-