com.pulumi.aws.medialive.kotlin.inputs.ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs.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.inputs
import com.pulumi.aws.medialive.inputs.ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property hlsInputSettings Specifies HLS input settings when the uri is for a HLS manifest. See HLS Input Settings for more details.
* @property serverValidation Check HTTPS server certificates.
*/
public data class ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs(
public val hlsInputSettings: Output? = null,
public val serverValidation: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.medialive.inputs.ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs =
com.pulumi.aws.medialive.inputs.ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs.builder()
.hlsInputSettings(hlsInputSettings?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.serverValidation(serverValidation?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs].
*/
@PulumiTagMarker
public class ChannelInputAttachmentInputSettingsNetworkInputSettingsArgsBuilder internal constructor() {
private var hlsInputSettings:
Output? = null
private var serverValidation: Output? = null
/**
* @param value Specifies HLS input settings when the uri is for a HLS manifest. See HLS Input Settings for more details.
*/
@JvmName("fjobjwfomxdkfanh")
public suspend fun hlsInputSettings(`value`: Output) {
this.hlsInputSettings = value
}
/**
* @param value Check HTTPS server certificates.
*/
@JvmName("cuklcwxtbuiifdqv")
public suspend fun serverValidation(`value`: Output) {
this.serverValidation = value
}
/**
* @param value Specifies HLS input settings when the uri is for a HLS manifest. See HLS Input Settings for more details.
*/
@JvmName("fsoqwmtejjdtmfxv")
public suspend fun hlsInputSettings(`value`: ChannelInputAttachmentInputSettingsNetworkInputSettingsHlsInputSettingsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.hlsInputSettings = mapped
}
/**
* @param argument Specifies HLS input settings when the uri is for a HLS manifest. See HLS Input Settings for more details.
*/
@JvmName("tomrkgvryihumvwn")
public suspend fun hlsInputSettings(argument: suspend ChannelInputAttachmentInputSettingsNetworkInputSettingsHlsInputSettingsArgsBuilder.() -> Unit) {
val toBeMapped =
ChannelInputAttachmentInputSettingsNetworkInputSettingsHlsInputSettingsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.hlsInputSettings = mapped
}
/**
* @param value Check HTTPS server certificates.
*/
@JvmName("qclrjwsaxcoajqgx")
public suspend fun serverValidation(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serverValidation = mapped
}
internal fun build(): ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs =
ChannelInputAttachmentInputSettingsNetworkInputSettingsArgs(
hlsInputSettings = hlsInputSettings,
serverValidation = serverValidation,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy