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

com.pulumi.awsnative.sagemaker.kotlin.inputs.UserProfileCustomFileSystemConfigArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sagemaker.kotlin.inputs

import com.pulumi.awsnative.sagemaker.inputs.UserProfileCustomFileSystemConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property efsFileSystemConfig The settings for a custom Amazon EFS file system.
 */
public data class UserProfileCustomFileSystemConfigArgs(
    public val efsFileSystemConfig: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.UserProfileCustomFileSystemConfigArgs = com.pulumi.awsnative.sagemaker.inputs.UserProfileCustomFileSystemConfigArgs.builder()
        .efsFileSystemConfig(
            efsFileSystemConfig?.applyValue({ args0 ->
                args0.let({ args0 ->
                    args0.toJava()
                })
            }),
        ).build()
}

/**
 * Builder for [UserProfileCustomFileSystemConfigArgs].
 */
@PulumiTagMarker
public class UserProfileCustomFileSystemConfigArgsBuilder internal constructor() {
    private var efsFileSystemConfig: Output? = null

    /**
     * @param value The settings for a custom Amazon EFS file system.
     */
    @JvmName("piquqhdxmfbjsjft")
    public suspend fun efsFileSystemConfig(`value`: Output) {
        this.efsFileSystemConfig = value
    }

    /**
     * @param value The settings for a custom Amazon EFS file system.
     */
    @JvmName("fxyfipvktrppgaqh")
    public suspend fun efsFileSystemConfig(`value`: UserProfileEfsFileSystemConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.efsFileSystemConfig = mapped
    }

    /**
     * @param argument The settings for a custom Amazon EFS file system.
     */
    @JvmName("slvycffreatoaayy")
    public suspend fun efsFileSystemConfig(argument: suspend UserProfileEfsFileSystemConfigArgsBuilder.() -> Unit) {
        val toBeMapped = UserProfileEfsFileSystemConfigArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.efsFileSystemConfig = mapped
    }

    internal fun build(): UserProfileCustomFileSystemConfigArgs =
        UserProfileCustomFileSystemConfigArgs(
            efsFileSystemConfig = efsFileSystemConfig,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy