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

io.burkard.cdk.services.medialive.cfnChannel.RtmpOutputSettingsProperty.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 RtmpOutputSettingsProperty {

  def apply(
    certificateMode: Option[String] = None,
    connectionRetryInterval: Option[Number] = None,
    numRetries: Option[Number] = None,
    destination: Option[software.amazon.awscdk.services.medialive.CfnChannel.OutputLocationRefProperty] = None
  ): software.amazon.awscdk.services.medialive.CfnChannel.RtmpOutputSettingsProperty =
    (new software.amazon.awscdk.services.medialive.CfnChannel.RtmpOutputSettingsProperty.Builder)
      .certificateMode(certificateMode.orNull)
      .connectionRetryInterval(connectionRetryInterval.orNull)
      .numRetries(numRetries.orNull)
      .destination(destination.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy