Interface CfnCacheCluster.DestinationDetailsProperty

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

@Stability(Stable) public static interface CfnCacheCluster.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.services.elasticache.*;
 DestinationDetailsProperty destinationDetailsProperty = DestinationDetailsProperty.builder()
         .cloudWatchLogsDetails(CloudWatchLogsDestinationDetailsProperty.builder()
                 .logGroup("logGroup")
                 .build())
         .kinesisFirehoseDetails(KinesisFirehoseDestinationDetailsProperty.builder()
                 .deliveryStream("deliveryStream")
                 .build())
         .build();
 

See Also: