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

com.pulumi.awsnative.datasync.kotlin.outputs.LocationFSxOpenZfsProtocol.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.datasync.kotlin.outputs

import kotlin.Suppress

/**
 * Configuration settings for an NFS or SMB protocol, currently only support NFS
 * @property nfs Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system.
 */
public data class LocationFSxOpenZfsProtocol(
    public val nfs: LocationFSxOpenZfsNfs? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.datasync.outputs.LocationFSxOpenZfsProtocol): LocationFSxOpenZfsProtocol = LocationFSxOpenZfsProtocol(
            nfs = javaType.nfs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.datasync.kotlin.outputs.LocationFSxOpenZfsNfs.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy