![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.inputs.GetRoutePlainArgs.kt Maven / Gradle / Ivy
@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("ifkuemkjyntjauir")
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("tlucavkkmhpautmj")
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"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy