![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.appconfig.kotlin.outputs.ExtensionParameter.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appconfig.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* A parameter for the extension to send to a specific action.
* @property description The description of the extension Parameter.
* @property dynamic
* @property required
*/
public data class ExtensionParameter(
public val description: String? = null,
public val `dynamic`: Boolean? = null,
public val required: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appconfig.outputs.ExtensionParameter): ExtensionParameter = ExtensionParameter(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
`dynamic` = javaType.`dynamic`().map({ args0 -> args0 }).orElse(null),
required = javaType.required(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy