com.pulumi.aws.identitystore.kotlin.outputs.GetGroupAlternateIdentifierUniqueAttribute.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 attributePath Attribute path that is used to specify which attribute name to search. For example: `DisplayName`. Refer to the [Group data type](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_Group.html).
* @property attributeValue Value for an attribute.
*/
public data class GetGroupAlternateIdentifierUniqueAttribute(
public val attributePath: String,
public val attributeValue: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.identitystore.outputs.GetGroupAlternateIdentifierUniqueAttribute): GetGroupAlternateIdentifierUniqueAttribute = GetGroupAlternateIdentifierUniqueAttribute(
attributePath = javaType.attributePath(),
attributeValue = javaType.attributeValue(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy