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

com.pulumi.gcp.transcoder.kotlin.outputs.JobTemplateConfigMuxStream.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.transcoder.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property container The container format. The default is `mp4`.
 * @property elementaryStreams List of ElementaryStream.key values multiplexed in this stream.
 * @property encryptionId Identifier of the encryption configuration to use.
 * @property fileName The name of the generated file.
 * @property key A unique key for this multiplexed stream.
 * @property segmentSettings Segment settings for ts, fmp4 and vtt.
 * Structure is documented below.
 */
public data class JobTemplateConfigMuxStream(
    public val container: String? = null,
    public val elementaryStreams: List? = null,
    public val encryptionId: String? = null,
    public val fileName: String? = null,
    public val key: String? = null,
    public val segmentSettings: JobTemplateConfigMuxStreamSegmentSettings? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.transcoder.outputs.JobTemplateConfigMuxStream): JobTemplateConfigMuxStream = JobTemplateConfigMuxStream(
            container = javaType.container().map({ args0 -> args0 }).orElse(null),
            elementaryStreams = javaType.elementaryStreams().map({ args0 -> args0 }),
            encryptionId = javaType.encryptionId().map({ args0 -> args0 }).orElse(null),
            fileName = javaType.fileName().map({ args0 -> args0 }).orElse(null),
            key = javaType.key().map({ args0 -> args0 }).orElse(null),
            segmentSettings = javaType.segmentSettings().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.transcoder.kotlin.outputs.JobTemplateConfigMuxStreamSegmentSettings.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy