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

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

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

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

import com.pulumi.awsnative.ec2.inputs.GetIpamScopePlainArgs.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 ipamScopeId Id of the IPAM scope.
 */
public data class GetIpamScopePlainArgs(
    public val ipamScopeId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.inputs.GetIpamScopePlainArgs =
        com.pulumi.awsnative.ec2.inputs.GetIpamScopePlainArgs.builder()
            .ipamScopeId(ipamScopeId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetIpamScopePlainArgs].
 */
@PulumiTagMarker
public class GetIpamScopePlainArgsBuilder internal constructor() {
    private var ipamScopeId: String? = null

    /**
     * @param value Id of the IPAM scope.
     */
    @JvmName("utmvnscjgvwurgsn")
    public suspend fun ipamScopeId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.ipamScopeId = mapped
    }

    internal fun build(): GetIpamScopePlainArgs = GetIpamScopePlainArgs(
        ipamScopeId = ipamScopeId ?: throw PulumiNullFieldException("ipamScopeId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy