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

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

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

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

import com.pulumi.awsnative.sagemaker.inputs.UserProfileEfsFileSystemConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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 fileSystemId The ID of your Amazon EFS file system.
 * @property fileSystemPath The path to the file system directory that is accessible in Amazon SageMaker Studio. Permitted users can access only this directory and below.
 */
public data class UserProfileEfsFileSystemConfigArgs(
    public val fileSystemId: Output,
    public val fileSystemPath: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.UserProfileEfsFileSystemConfigArgs =
        com.pulumi.awsnative.sagemaker.inputs.UserProfileEfsFileSystemConfigArgs.builder()
            .fileSystemId(fileSystemId.applyValue({ args0 -> args0 }))
            .fileSystemPath(fileSystemPath?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [UserProfileEfsFileSystemConfigArgs].
 */
@PulumiTagMarker
public class UserProfileEfsFileSystemConfigArgsBuilder internal constructor() {
    private var fileSystemId: Output? = null

    private var fileSystemPath: Output? = null

    /**
     * @param value The ID of your Amazon EFS file system.
     */
    @JvmName("egyytamsemvijvwr")
    public suspend fun fileSystemId(`value`: Output) {
        this.fileSystemId = value
    }

    /**
     * @param value The path to the file system directory that is accessible in Amazon SageMaker Studio. Permitted users can access only this directory and below.
     */
    @JvmName("leywttiyjtqggjho")
    public suspend fun fileSystemPath(`value`: Output) {
        this.fileSystemPath = value
    }

    /**
     * @param value The ID of your Amazon EFS file system.
     */
    @JvmName("frhjcsysukfnpprp")
    public suspend fun fileSystemId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.fileSystemId = mapped
    }

    /**
     * @param value The path to the file system directory that is accessible in Amazon SageMaker Studio. Permitted users can access only this directory and below.
     */
    @JvmName("ysqdsyefhigvpilr")
    public suspend fun fileSystemPath(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.fileSystemPath = mapped
    }

    internal fun build(): UserProfileEfsFileSystemConfigArgs = UserProfileEfsFileSystemConfigArgs(
        fileSystemId = fileSystemId ?: throw PulumiNullFieldException("fileSystemId"),
        fileSystemPath = fileSystemPath,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy