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

com.pulumi.awsnative.mediapackagev2.kotlin.inputs.OriginEndpointScteArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.mediapackagev2.kotlin.inputs

import com.pulumi.awsnative.mediapackagev2.inputs.OriginEndpointScteArgs.builder
import com.pulumi.awsnative.mediapackagev2.kotlin.enums.OriginEndpointScteFilter
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * 

The SCTE configuration.

* @property scteFilter

The SCTE-35 message types that you want to be treated as ad markers in the output.

*/ public data class OriginEndpointScteArgs( public val scteFilter: Output>? = null, ) : ConvertibleToJava { override fun toJava(): com.pulumi.awsnative.mediapackagev2.inputs.OriginEndpointScteArgs = com.pulumi.awsnative.mediapackagev2.inputs.OriginEndpointScteArgs.builder() .scteFilter( scteFilter?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }), ).build() } /** * Builder for [OriginEndpointScteArgs]. */ @PulumiTagMarker public class OriginEndpointScteArgsBuilder internal constructor() { private var scteFilter: Output>? = null /** * @param value

The SCTE-35 message types that you want to be treated as ad markers in the output.

*/ @JvmName("xkvawhggycbjljxx") public suspend fun scteFilter(`value`: Output>) { this.scteFilter = value } @JvmName("mpafbtmuynhxfhom") public suspend fun scteFilter(vararg values: Output) { this.scteFilter = Output.all(values.asList()) } /** * @param values

The SCTE-35 message types that you want to be treated as ad markers in the output.

*/ @JvmName("baliitdkpwartiyy") public suspend fun scteFilter(values: List>) { this.scteFilter = Output.all(values) } /** * @param value

The SCTE-35 message types that you want to be treated as ad markers in the output.

*/ @JvmName("ltgtwhfncdvejifs") public suspend fun scteFilter(`value`: List?) { val toBeMapped = value val mapped = toBeMapped?.let({ args0 -> of(args0) }) this.scteFilter = mapped } /** * @param values

The SCTE-35 message types that you want to be treated as ad markers in the output.

*/ @JvmName("caurvcwvtkjvafcx") public suspend fun scteFilter(vararg values: OriginEndpointScteFilter) { val toBeMapped = values.toList() val mapped = toBeMapped.let({ args0 -> of(args0) }) this.scteFilter = mapped } internal fun build(): OriginEndpointScteArgs = OriginEndpointScteArgs( scteFilter = scteFilter, ) }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy