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

com.pulumi.awsnative.ec2.kotlin.EgressOnlyInternetGatewayArgs.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: 0.122.0.0
Show newest version
@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,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy