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

com.pulumi.awsnative.events.kotlin.inputs.EndpointSecondaryArgs.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: 1.11.0.0
Show newest version
@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"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy