All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.burkard.cdk.services.medialive.cfnChannel.InputLossBehaviorProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.medialive.cfnChannel

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object InputLossBehaviorProperty {

  def apply(
    inputLossImageSlate: Option[software.amazon.awscdk.services.medialive.CfnChannel.InputLocationProperty] = None,
    inputLossImageType: Option[String] = None,
    repeatFrameMsec: Option[Number] = None,
    blackFrameMsec: Option[Number] = None,
    inputLossImageColor: Option[String] = None
  ): software.amazon.awscdk.services.medialive.CfnChannel.InputLossBehaviorProperty =
    (new software.amazon.awscdk.services.medialive.CfnChannel.InputLossBehaviorProperty.Builder)
      .inputLossImageSlate(inputLossImageSlate.orNull)
      .inputLossImageType(inputLossImageType.orNull)
      .repeatFrameMsec(repeatFrameMsec.orNull)
      .blackFrameMsec(blackFrameMsec.orNull)
      .inputLossImageColor(inputLossImageColor.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy