com.pulumi.aws.identitystore.kotlin.outputs.GetGroupExternalId.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property id The identifier issued to this resource by an external identity provider.
* @property issuer The issuer for an external identifier.
*/
public data class GetGroupExternalId(
public val id: String,
public val issuer: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.identitystore.outputs.GetGroupExternalId): GetGroupExternalId = GetGroupExternalId(
id = javaType.id(),
issuer = javaType.issuer(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy