![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.connect.kotlin.outputs.GetPredefinedAttributeResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.connect.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
/**
*
* @property lastModifiedRegion Last modified region.
* @property lastModifiedTime Last modified time.
* @property values The values of a predefined attribute.
*/
public data class GetPredefinedAttributeResult(
public val lastModifiedRegion: String? = null,
public val lastModifiedTime: Double? = null,
public val values: ValuesProperties? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.connect.outputs.GetPredefinedAttributeResult): GetPredefinedAttributeResult = GetPredefinedAttributeResult(
lastModifiedRegion = javaType.lastModifiedRegion().map({ args0 -> args0 }).orElse(null),
lastModifiedTime = javaType.lastModifiedTime().map({ args0 -> args0 }).orElse(null),
values = javaType.values().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.connect.kotlin.outputs.ValuesProperties.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy