io.burkard.cdk.services.medialive.cfnChannel.HlsInputSettingsProperty.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 HlsInputSettingsProperty {
def apply(
retries: Option[Number] = None,
bufferSegments: Option[Number] = None,
bandwidth: Option[Number] = None,
scte35Source: Option[String] = None,
retryInterval: Option[Number] = None
): software.amazon.awscdk.services.medialive.CfnChannel.HlsInputSettingsProperty =
(new software.amazon.awscdk.services.medialive.CfnChannel.HlsInputSettingsProperty.Builder)
.retries(retries.orNull)
.bufferSegments(bufferSegments.orNull)
.bandwidth(bandwidth.orNull)
.scte35Source(scte35Source.orNull)
.retryInterval(retryInterval.orNull)
.build()
}