io.burkard.cdk.services.networkfirewall.cfnLoggingConfiguration.LoggingConfigurationProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.networkfirewall.cfnLoggingConfiguration
import scala.collection.JavaConverters._
@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object LoggingConfigurationProperty {
def apply(
logDestinationConfigs: List[_]
): software.amazon.awscdk.services.networkfirewall.CfnLoggingConfiguration.LoggingConfigurationProperty =
(new software.amazon.awscdk.services.networkfirewall.CfnLoggingConfiguration.LoggingConfigurationProperty.Builder)
.logDestinationConfigs(logDestinationConfigs.asJava)
.build()
}