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

com.pulumi.aws.medialive.kotlin.outputs.MultiplexMultiplexSettings.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.medialive.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 *
 * @property maximumVideoBufferDelayMilliseconds Maximum video buffer delay.
 * @property transportStreamBitrate Transport stream bit rate.
 * @property transportStreamId Unique ID for each multiplex.
 * @property transportStreamReservedBitrate Transport stream reserved bit rate.
 */
public data class MultiplexMultiplexSettings(
    public val maximumVideoBufferDelayMilliseconds: Int? = null,
    public val transportStreamBitrate: Int,
    public val transportStreamId: Int,
    public val transportStreamReservedBitrate: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.medialive.outputs.MultiplexMultiplexSettings): MultiplexMultiplexSettings = MultiplexMultiplexSettings(
            maximumVideoBufferDelayMilliseconds = javaType.maximumVideoBufferDelayMilliseconds().map({ args0 ->
                args0
            }).orElse(null),
            transportStreamBitrate = javaType.transportStreamBitrate(),
            transportStreamId = javaType.transportStreamId(),
            transportStreamReservedBitrate = javaType.transportStreamReservedBitrate().map({ args0 ->
                args0
            }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy