All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.identitystore.kotlin.inputs.GetUserAlternateIdentifierExternalId.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@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