Interface CfnReplicatorPropsMixin.ReplicatorLogDeliveryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicatorPropsMixin.ReplicatorLogDeliveryProperty.Jsii$Proxy
- Enclosing class:
CfnReplicatorPropsMixin
@Stability(Stable)
public static interface CfnReplicatorPropsMixin.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.cfnpropertymixins.services.msk.*;
ReplicatorLogDeliveryProperty replicatorLogDeliveryProperty = ReplicatorLogDeliveryProperty.builder()
.cloudWatchLogs(CloudWatchLogsProperty.builder()
.enabled(false)
.logGroup("logGroup")
.build())
.firehose(FirehoseProperty.builder()
.deliveryStream("deliveryStream")
.enabled(false)
.build())
.s3(S3Property.builder()
.bucket("bucket")
.enabled(false)
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicatorPropsMixin.ReplicatorLogDeliveryPropertystatic final classAn implementation forCfnReplicatorPropsMixin.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
IResolvableorCfnReplicatorPropsMixin.CloudWatchLogsProperty- See Also:
-
getFirehose
Details about delivering logs to Firehose.Returns union: either
IResolvableorCfnReplicatorPropsMixin.FirehoseProperty- See Also:
-
getS3
Details about delivering logs to S3.Returns union: either
IResolvableorCfnReplicatorPropsMixin.S3Property- See Also:
-
builder
-