![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.inputs.GetCustomerGatewayPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.inputs
import com.pulumi.awsnative.ec2.inputs.GetCustomerGatewayPlainArgs.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 customerGatewayId The ID of the customer gateway.
*/
public data class GetCustomerGatewayPlainArgs(
public val customerGatewayId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetCustomerGatewayPlainArgs =
com.pulumi.awsnative.ec2.inputs.GetCustomerGatewayPlainArgs.builder()
.customerGatewayId(customerGatewayId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetCustomerGatewayPlainArgs].
*/
@PulumiTagMarker
public class GetCustomerGatewayPlainArgsBuilder internal constructor() {
private var customerGatewayId: String? = null
/**
* @param value The ID of the customer gateway.
*/
@JvmName("kfaemnbjuysoittv")
public suspend fun customerGatewayId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.customerGatewayId = mapped
}
internal fun build(): GetCustomerGatewayPlainArgs = GetCustomerGatewayPlainArgs(
customerGatewayId = customerGatewayId ?: throw PulumiNullFieldException("customerGatewayId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy