Interface CfnCacheCluster.LogDeliveryConfigurationRequestProperty

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

@Stability(Stable) public static interface CfnCacheCluster.LogDeliveryConfigurationRequestProperty extends software.amazon.jsii.JsiiSerializable
Specifies the destination, format and type of the 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.elasticache.*;
 LogDeliveryConfigurationRequestProperty logDeliveryConfigurationRequestProperty = LogDeliveryConfigurationRequestProperty.builder()
         .destinationDetails(DestinationDetailsProperty.builder()
                 .cloudWatchLogsDetails(CloudWatchLogsDestinationDetailsProperty.builder()
                         .logGroup("logGroup")
                         .build())
                 .kinesisFirehoseDetails(KinesisFirehoseDestinationDetailsProperty.builder()
                         .deliveryStream("deliveryStream")
                         .build())
                 .build())
         .destinationType("destinationType")
         .logFormat("logFormat")
         .logType("logType")
         .build();
 

See Also: