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

com.pulumi.awsnative.ec2.kotlin.inputs.GetEgressOnlyInternetGatewayPlainArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ec2.kotlin.inputs

import com.pulumi.awsnative.ec2.inputs.GetEgressOnlyInternetGatewayPlainArgs.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 id Service Generated ID of the EgressOnlyInternetGateway
 */
public data class GetEgressOnlyInternetGatewayPlainArgs(
    public val id: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetEgressOnlyInternetGatewayPlainArgs =
        com.pulumi.awsnative.ec2.inputs.GetEgressOnlyInternetGatewayPlainArgs.builder()
            .id(id.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetEgressOnlyInternetGatewayPlainArgs].
 */
@PulumiTagMarker
public class GetEgressOnlyInternetGatewayPlainArgsBuilder internal constructor() {
    private var id: String? = null

    /**
     * @param value Service Generated ID of the EgressOnlyInternetGateway
     */
    @JvmName("gbqfhsqmnnmxtayd")
    public suspend fun id(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.id = mapped
    }

    internal fun build(): GetEgressOnlyInternetGatewayPlainArgs =
        GetEgressOnlyInternetGatewayPlainArgs(
            id = id ?: throw PulumiNullFieldException("id"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy