io.burkard.cdk.services.elasticache.cfnCacheCluster.LogDeliveryConfigurationRequestProperty.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 LogDeliveryConfigurationRequestProperty {
def apply(
logFormat: String,
destinationType: String,
destinationDetails: software.amazon.awscdk.services.elasticache.CfnCacheCluster.DestinationDetailsProperty,
logType: String
): software.amazon.awscdk.services.elasticache.CfnCacheCluster.LogDeliveryConfigurationRequestProperty =
(new software.amazon.awscdk.services.elasticache.CfnCacheCluster.LogDeliveryConfigurationRequestProperty.Builder)
.logFormat(logFormat)
.destinationType(destinationType)
.destinationDetails(destinationDetails)
.logType(logType)
.build()
}