![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.rolesanywhere.kotlin.inputs.GetProfilePlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.rolesanywhere.kotlin.inputs
import com.pulumi.awsnative.rolesanywhere.inputs.GetProfilePlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property profileId The unique primary identifier of the Profile
*/
public data class GetProfilePlainArgs(
public val profileId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.rolesanywhere.inputs.GetProfilePlainArgs =
com.pulumi.awsnative.rolesanywhere.inputs.GetProfilePlainArgs.builder()
.profileId(profileId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetProfilePlainArgs].
*/
@PulumiTagMarker
public class GetProfilePlainArgsBuilder internal constructor() {
private var profileId: String? = null
/**
* @param value The unique primary identifier of the Profile
*/
@JvmName("mtntixxvnuursanc")
public suspend fun profileId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.profileId = mapped
}
internal fun build(): GetProfilePlainArgs = GetProfilePlainArgs(
profileId = profileId ?: throw PulumiNullFieldException("profileId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy