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

com.pulumi.awsnative.mediapackage.kotlin.enums.OriginEndpointDashPackageManifestLayout.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: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.mediapackage.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * Determines the position of some tags in the Media Presentation Description (MPD).  When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation.  When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
 */
public enum class OriginEndpointDashPackageManifestLayout(
    public val javaValue: com.pulumi.awsnative.mediapackage.enums.OriginEndpointDashPackageManifestLayout,
) :
    ConvertibleToJava {
    Full(com.pulumi.awsnative.mediapackage.enums.OriginEndpointDashPackageManifestLayout.Full),
    Compact(com.pulumi.awsnative.mediapackage.enums.OriginEndpointDashPackageManifestLayout.Compact),
    DrmTopLevelCompact(com.pulumi.awsnative.mediapackage.enums.OriginEndpointDashPackageManifestLayout.DrmTopLevelCompact),
    ;

    override fun toJava(): com.pulumi.awsnative.mediapackage.enums.OriginEndpointDashPackageManifestLayout = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.mediapackage.enums.OriginEndpointDashPackageManifestLayout): OriginEndpointDashPackageManifestLayout =
            OriginEndpointDashPackageManifestLayout.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy