com.pulumi.awsnative.datasync.kotlin.outputs.LocationFSxOntapNfs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datasync.kotlin.outputs
import kotlin.Suppress
/**
* NFS protocol configuration for FSx ONTAP file system.
* @property mountOptions Specifies how DataSync can access a location using the NFS protocol.
*/
public data class LocationFSxOntapNfs(
public val mountOptions: LocationFSxOntapNfsMountOptions,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datasync.outputs.LocationFSxOntapNfs): LocationFSxOntapNfs = LocationFSxOntapNfs(
mountOptions = javaType.mountOptions().let({ args0 ->
com.pulumi.awsnative.datasync.kotlin.outputs.LocationFSxOntapNfsMountOptions.Companion.toKotlin(args0)
}),
)
}
}