![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.datazone.kotlin.outputs.EnvironmentProfileEnvironmentParameter.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datazone.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The parameter details of an environment profile.
* @property name The name of an environment profile parameter.
* @property value The value of an environment profile parameter.
*/
public data class EnvironmentProfileEnvironmentParameter(
public val name: String? = null,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datazone.outputs.EnvironmentProfileEnvironmentParameter): EnvironmentProfileEnvironmentParameter = EnvironmentProfileEnvironmentParameter(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy