io.burkard.cdk.services.lex.cfnBot.ConversationLogSettingsProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.lex.cfnBot
import scala.collection.JavaConverters._
@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ConversationLogSettingsProperty {
def apply(
audioLogSettings: Option[List[_]] = None,
textLogSettings: Option[List[_]] = None
): software.amazon.awscdk.services.lex.CfnBot.ConversationLogSettingsProperty =
(new software.amazon.awscdk.services.lex.CfnBot.ConversationLogSettingsProperty.Builder)
.audioLogSettings(audioLogSettings.map(_.asJava).orNull)
.textLogSettings(textLogSettings.map(_.asJava).orNull)
.build()
}