com.pulumi.awsnative.events.kotlin.inputs.EndpointSecondaryArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.events.kotlin.inputs
import com.pulumi.awsnative.events.inputs.EndpointSecondaryArgs.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
/**
*
* @property route Defines the secondary Region.
*/
public data class EndpointSecondaryArgs(
public val route: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.events.inputs.EndpointSecondaryArgs =
com.pulumi.awsnative.events.inputs.EndpointSecondaryArgs.builder()
.route(route.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EndpointSecondaryArgs].
*/
@PulumiTagMarker
public class EndpointSecondaryArgsBuilder internal constructor() {
private var route: Output? = null
/**
* @param value Defines the secondary Region.
*/
@JvmName("ewwiycevjilpnfqt")
public suspend fun route(`value`: Output) {
this.route = value
}
/**
* @param value Defines the secondary Region.
*/
@JvmName("trocaavlpqkywsbt")
public suspend fun route(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.route = mapped
}
internal fun build(): EndpointSecondaryArgs = EndpointSecondaryArgs(
route = route ?: throw PulumiNullFieldException("route"),
)
}