![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ssmcontacts.kotlin.outputs.GetContactResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ssmcontacts.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property arn The Amazon Resource Name (ARN) of the contact.
* @property displayName Name of the contact. String value with 3 to 256 characters. Only alphabetical, space, numeric characters, dash, or underscore allowed.
*/
public data class GetContactResult(
public val arn: String? = null,
public val displayName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ssmcontacts.outputs.GetContactResult): GetContactResult = GetContactResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
displayName = javaType.displayName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy