![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.identitystore.kotlin.outputs.GetGroupResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.identitystore.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description A string containing the description of the group.
* @property displayName A string containing the name of the group. This value is commonly displayed when the group is referenced.
* @property groupId The unique identifier for a group in the identity store.
*/
public data class GetGroupResult(
public val description: String? = null,
public val displayName: String? = null,
public val groupId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.identitystore.outputs.GetGroupResult): GetGroupResult = GetGroupResult(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
displayName = javaType.displayName().map({ args0 -> args0 }).orElse(null),
groupId = javaType.groupId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy