![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.elasticbeanstalk.kotlin.outputs.EnvironmentTier.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticbeanstalk.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name of this environment tier.
* @property type The type of this environment tier.
* @property version The version of this environment tier. When you don't set a value to it, Elastic Beanstalk uses the latest compatible worker tier version.
*/
public data class EnvironmentTier(
public val name: String? = null,
public val type: String? = null,
public val version: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.elasticbeanstalk.outputs.EnvironmentTier): EnvironmentTier = EnvironmentTier(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy