io.burkard.cdk.services.elasticache.cfnCacheCluster.DestinationDetailsProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.elasticache.cfnCacheCluster
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object DestinationDetailsProperty {
def apply(
cloudWatchLogsDetails: Option[software.amazon.awscdk.services.elasticache.CfnCacheCluster.CloudWatchLogsDestinationDetailsProperty] = None,
kinesisFirehoseDetails: Option[software.amazon.awscdk.services.elasticache.CfnCacheCluster.KinesisFirehoseDestinationDetailsProperty] = None
): software.amazon.awscdk.services.elasticache.CfnCacheCluster.DestinationDetailsProperty =
(new software.amazon.awscdk.services.elasticache.CfnCacheCluster.DestinationDetailsProperty.Builder)
.cloudWatchLogsDetails(cloudWatchLogsDetails.orNull)
.kinesisFirehoseDetails(kinesisFirehoseDetails.orNull)
.build()
}