![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotsitewise.kotlin.inputs.AccessPolicyUserArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotsitewise.kotlin.inputs
import com.pulumi.awsnative.iotsitewise.inputs.AccessPolicyUserArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Contains information for a user identity in an access policy.
* @property id The AWS SSO ID of the user.
*/
public data class AccessPolicyUserArgs(
public val id: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotsitewise.inputs.AccessPolicyUserArgs =
com.pulumi.awsnative.iotsitewise.inputs.AccessPolicyUserArgs.builder()
.id(id?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AccessPolicyUserArgs].
*/
@PulumiTagMarker
public class AccessPolicyUserArgsBuilder internal constructor() {
private var id: Output? = null
/**
* @param value The AWS SSO ID of the user.
*/
@JvmName("ioesudtdpiwavimw")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value The AWS SSO ID of the user.
*/
@JvmName("evvyrfrqllkrwxyt")
public suspend fun id(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.id = mapped
}
internal fun build(): AccessPolicyUserArgs = AccessPolicyUserArgs(
id = id,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy