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

com.pulumi.awsnative.mediatailor.kotlin.inputs.SourceLocationHttpConfigurationArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.mediatailor.kotlin.inputs

import com.pulumi.awsnative.mediatailor.inputs.SourceLocationHttpConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * 

The HTTP configuration for the source location.

* @property baseUrl

The base URL for the source location host server. This string must include the protocol, such as https://.

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

The base URL for the source location host server. This string must include the protocol, such as https://.

*/ @JvmName("reloogbltuaeadvt") public suspend fun baseUrl(`value`: Output) { this.baseUrl = value } /** * @param value

The base URL for the source location host server. This string must include the protocol, such as https://.

*/ @JvmName("ahbnbiegbuhjgonl") public suspend fun baseUrl(`value`: String) { val toBeMapped = value val mapped = toBeMapped.let({ args0 -> of(args0) }) this.baseUrl = mapped } internal fun build(): SourceLocationHttpConfigurationArgs = SourceLocationHttpConfigurationArgs( baseUrl = baseUrl ?: throw PulumiNullFieldException("baseUrl"), ) }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy