com.pulumi.aws.medialive.kotlin.outputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsUdpGroupSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.medialive.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property inputLossAction Specifies behavior of last resort when input video os lost.
* @property timedMetadataId3Frame Indicates ID3 frame that has the timecode.
* @property timedMetadataId3Period
*/
public data class ChannelEncoderSettingsOutputGroupOutputGroupSettingsUdpGroupSettings(
public val inputLossAction: String? = null,
public val timedMetadataId3Frame: String? = null,
public val timedMetadataId3Period: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.medialive.outputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsUdpGroupSettings): ChannelEncoderSettingsOutputGroupOutputGroupSettingsUdpGroupSettings =
ChannelEncoderSettingsOutputGroupOutputGroupSettingsUdpGroupSettings(
inputLossAction = javaType.inputLossAction().map({ args0 -> args0 }).orElse(null),
timedMetadataId3Frame = javaType.timedMetadataId3Frame().map({ args0 -> args0 }).orElse(null),
timedMetadataId3Period = javaType.timedMetadataId3Period().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy