com.pulumi.awsnative.ec2.kotlin.inputs.GetRoutePlainArgs.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.ec2.kotlin.inputs
import com.pulumi.awsnative.ec2.inputs.GetRoutePlainArgs.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 cidrBlock The IPv4 CIDR block.
* @property routeTableId The ID of the route table for the route.
*/
public data class GetRoutePlainArgs(
public val cidrBlock: String,
public val routeTableId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetRoutePlainArgs =
com.pulumi.awsnative.ec2.inputs.GetRoutePlainArgs.builder()
.cidrBlock(cidrBlock.let({ args0 -> args0 }))
.routeTableId(routeTableId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetRoutePlainArgs].
*/
@PulumiTagMarker
public class GetRoutePlainArgsBuilder internal constructor() {
private var cidrBlock: String? = null
private var routeTableId: String? = null
/**
* @param value The IPv4 CIDR block.
*/
@JvmName("wvkargldeldfqgdc")
public suspend fun cidrBlock(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.cidrBlock = mapped
}
/**
* @param value The ID of the route table for the route.
*/
@JvmName("keeggnohsdwgtjqg")
public suspend fun routeTableId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.routeTableId = mapped
}
internal fun build(): GetRoutePlainArgs = GetRoutePlainArgs(
cidrBlock = cidrBlock ?: throw PulumiNullFieldException("cidrBlock"),
routeTableId = routeTableId ?: throw PulumiNullFieldException("routeTableId"),
)
}