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

com.pulumi.awsnative.nimblestudio.kotlin.outputs.StudioComponentSharedFileSystemConfiguration.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.nimblestudio.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * 

The configuration for a shared file storage system that is associated with a studio * resource.

* @property endpoint

The endpoint of the shared file system that is accessed by the studio component * resource.

* @property fileSystemId

The unique identifier for a file system.

* @property linuxMountPoint

The mount location for a shared file system on a Linux virtual workstation.

* @property shareName

The name of the file share.

* @property windowsMountDrive

The mount location for a shared file system on a Windows virtual workstation.

*/ public data class StudioComponentSharedFileSystemConfiguration( public val endpoint: String? = null, public val fileSystemId: String? = null, public val linuxMountPoint: String? = null, public val shareName: String? = null, public val windowsMountDrive: String? = null, ) { public companion object { public fun toKotlin(javaType: com.pulumi.awsnative.nimblestudio.outputs.StudioComponentSharedFileSystemConfiguration): StudioComponentSharedFileSystemConfiguration = StudioComponentSharedFileSystemConfiguration( endpoint = javaType.endpoint().map({ args0 -> args0 }).orElse(null), fileSystemId = javaType.fileSystemId().map({ args0 -> args0 }).orElse(null), linuxMountPoint = javaType.linuxMountPoint().map({ args0 -> args0 }).orElse(null), shareName = javaType.shareName().map({ args0 -> args0 }).orElse(null), windowsMountDrive = javaType.windowsMountDrive().map({ args0 -> args0 }).orElse(null), ) } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy