
com.pulumi.awsnative.elasticbeanstalk.kotlin.outputs.EnvironmentOptionSetting.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticbeanstalk.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property namespace A unique namespace that identifies the option's associated AWS resource.
* @property optionName The name of the configuration option.
* @property resourceName A unique resource name for the option setting. Use it for a time–based scaling configuration option.
* @property value The current value for the configuration option.
*/
public data class EnvironmentOptionSetting(
public val namespace: String,
public val optionName: String,
public val resourceName: String? = null,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.elasticbeanstalk.outputs.EnvironmentOptionSetting): EnvironmentOptionSetting = EnvironmentOptionSetting(
namespace = javaType.namespace(),
optionName = javaType.optionName(),
resourceName = javaType.resourceName().map({ args0 -> args0 }).orElse(null),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy