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

com.pulumi.awsnative.efs.kotlin.inputs.GetMountTargetPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.efs.kotlin.inputs

import com.pulumi.awsnative.efs.inputs.GetMountTargetPlainArgs.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 The ID of the Amazon EFS file system that the mount target provides access to.
 * Example: `fs-0123456789111222a`
 */
public data class GetMountTargetPlainArgs(
    public val id: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.efs.inputs.GetMountTargetPlainArgs =
        com.pulumi.awsnative.efs.inputs.GetMountTargetPlainArgs.builder()
            .id(id.let({ args0 -> args0 })).build()
}

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

    /**
     * @param value The ID of the Amazon EFS file system that the mount target provides access to.
     * Example: `fs-0123456789111222a`
     */
    @JvmName("ojduxqjbjlixxxqc")
    public suspend fun id(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.id = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy