com.pulumi.awsnative.events.kotlin.outputs.ConnectionParameter.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.events.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property isValueSecret Specifies whether the value is secret.
* @property key The key for a query string parameter.
* @property value The value associated with the key for the query string parameter.
*/
public data class ConnectionParameter(
public val isValueSecret: Boolean? = null,
public val key: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.events.outputs.ConnectionParameter): ConnectionParameter = ConnectionParameter(
isValueSecret = javaType.isValueSecret().map({ args0 -> args0 }).orElse(null),
key = javaType.key(),
`value` = javaType.`value`(),
)
}
}