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

com.pulumi.awsnative.sagemaker.kotlin.outputs.DomainEfsFileSystemConfig.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sagemaker.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @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 DomainEfsFileSystemConfig(
    public val fileSystemId: String,
    public val fileSystemPath: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.DomainEfsFileSystemConfig): DomainEfsFileSystemConfig = DomainEfsFileSystemConfig(
            fileSystemId = javaType.fileSystemId(),
            fileSystemPath = javaType.fileSystemPath().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy