com.pulumi.awsnative.ec2.kotlin.EgressOnlyInternetGatewayArgs.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
import com.pulumi.awsnative.ec2.EgressOnlyInternetGatewayArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::EC2::EgressOnlyInternetGateway
* @property vpcId The ID of the VPC for which to create the egress-only internet gateway.
*/
public data class EgressOnlyInternetGatewayArgs(
public val vpcId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.EgressOnlyInternetGatewayArgs =
com.pulumi.awsnative.ec2.EgressOnlyInternetGatewayArgs.builder()
.vpcId(vpcId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EgressOnlyInternetGatewayArgs].
*/
@PulumiTagMarker
public class EgressOnlyInternetGatewayArgsBuilder internal constructor() {
private var vpcId: Output? = null
/**
* @param value The ID of the VPC for which to create the egress-only internet gateway.
*/
@JvmName("exjpquhsmfqjycsc")
public suspend fun vpcId(`value`: Output) {
this.vpcId = value
}
/**
* @param value The ID of the VPC for which to create the egress-only internet gateway.
*/
@JvmName("pfrtkpmppcpfflgm")
public suspend fun vpcId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.vpcId = mapped
}
internal fun build(): EgressOnlyInternetGatewayArgs = EgressOnlyInternetGatewayArgs(
vpcId = vpcId,
)
}