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

com.pulumi.awsnative.ec2.kotlin.inputs.GetGatewayRouteTableAssociationPlainArgs.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.24.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ec2.kotlin.inputs

import com.pulumi.awsnative.ec2.inputs.GetGatewayRouteTableAssociationPlainArgs.builder
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 gatewayId The ID of the gateway.
 */
public data class GetGatewayRouteTableAssociationPlainArgs(
    public val gatewayId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetGatewayRouteTableAssociationPlainArgs =
        com.pulumi.awsnative.ec2.inputs.GetGatewayRouteTableAssociationPlainArgs.builder()
            .gatewayId(gatewayId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetGatewayRouteTableAssociationPlainArgs].
 */
@PulumiTagMarker
public class GetGatewayRouteTableAssociationPlainArgsBuilder internal constructor() {
    private var gatewayId: String? = null

    /**
     * @param value The ID of the gateway.
     */
    @JvmName("lahgsoyfhmcynqbt")
    public suspend fun gatewayId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.gatewayId = mapped
    }

    internal fun build(): GetGatewayRouteTableAssociationPlainArgs =
        GetGatewayRouteTableAssociationPlainArgs(
            gatewayId = gatewayId ?: throw PulumiNullFieldException("gatewayId"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy