Interface CfnReplicationGroupPropsMixin.DestinationDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicationGroupPropsMixin.DestinationDetailsProperty.Jsii$Proxy
Enclosing class:
CfnReplicationGroupPropsMixin

@Stability(Stable) public static interface CfnReplicationGroupPropsMixin.DestinationDetailsProperty extends software.amazon.jsii.JsiiSerializable
Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.elasticache.mixins.*;
 DestinationDetailsProperty destinationDetailsProperty = DestinationDetailsProperty.builder()
         .cloudWatchLogsDetails(CloudWatchLogsDestinationDetailsProperty.builder()
                 .logGroup("logGroup")
                 .build())
         .kinesisFirehoseDetails(KinesisFirehoseDestinationDetailsProperty.builder()
                 .deliveryStream("deliveryStream")
                 .build())
         .build();
 

See Also: