com.pulumi.awsnative.efs.kotlin.outputs.AccessPointPosixUser.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.efs.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.
* @property gid The POSIX group ID used for all file system operations using this access point.
* @property secondaryGids Secondary POSIX group IDs used for all file system operations using this access point.
* @property uid The POSIX user ID used for all file system operations using this access point.
*/
public data class AccessPointPosixUser(
public val gid: String,
public val secondaryGids: List? = null,
public val uid: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.efs.outputs.AccessPointPosixUser): AccessPointPosixUser = AccessPointPosixUser(
gid = javaType.gid(),
secondaryGids = javaType.secondaryGids().map({ args0 -> args0 }),
uid = javaType.uid(),
)
}
}