
com.pulumi.awsnative.mediaconnect.kotlin.outputs.FlowOutputDestinationConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediaconnect.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* The definition of a media stream that is associated with the output.
* @property destinationIp The IP address where contents of the media stream will be sent.
* @property destinationPort The port to use when the content of the media stream is distributed to the output.
* @property interface The VPC interface that is used for the media stream associated with the output.
*/
public data class FlowOutputDestinationConfiguration(
public val destinationIp: String,
public val destinationPort: Int,
public val `interface`: FlowOutputInterface,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediaconnect.outputs.FlowOutputDestinationConfiguration): FlowOutputDestinationConfiguration = FlowOutputDestinationConfiguration(
destinationIp = javaType.destinationIp(),
destinationPort = javaType.destinationPort(),
`interface` = javaType.interface_().let({ args0 ->
com.pulumi.awsnative.mediaconnect.kotlin.outputs.FlowOutputInterface.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy