com.pulumi.aws.identitystore.kotlin.inputs.GetUserAlternateIdentifierExternalId.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.identitystore.kotlin.inputs
import com.pulumi.aws.identitystore.inputs.GetUserAlternateIdentifierExternalId.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 id The identifier issued to this resource by an external identity provider.
* @property issuer The issuer for an external identifier.
*/
public data class GetUserAlternateIdentifierExternalId(
public val id: String,
public val issuer: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.identitystore.inputs.GetUserAlternateIdentifierExternalId =
com.pulumi.aws.identitystore.inputs.GetUserAlternateIdentifierExternalId.builder()
.id(id.let({ args0 -> args0 }))
.issuer(issuer.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetUserAlternateIdentifierExternalId].
*/
@PulumiTagMarker
public class GetUserAlternateIdentifierExternalIdBuilder internal constructor() {
private var id: String? = null
private var issuer: String? = null
/**
* @param value The identifier issued to this resource by an external identity provider.
*/
@JvmName("riiudphigrpmdacr")
public suspend fun id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.id = mapped
}
/**
* @param value The issuer for an external identifier.
*/
@JvmName("wkqvlapiytdmryyu")
public suspend fun issuer(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.issuer = mapped
}
internal fun build(): GetUserAlternateIdentifierExternalId = GetUserAlternateIdentifierExternalId(
id = id ?: throw PulumiNullFieldException("id"),
issuer = issuer ?: throw PulumiNullFieldException("issuer"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy