![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.evidently.kotlin.outputs.FeatureEntityOverride.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.evidently.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property entityId The entity ID to be served the variation specified in `Variation` .
* @property variation The name of the variation to serve to the user session that matches the `EntityId` .
*/
public data class FeatureEntityOverride(
public val entityId: String? = null,
public val variation: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.evidently.outputs.FeatureEntityOverride): FeatureEntityOverride = FeatureEntityOverride(
entityId = javaType.entityId().map({ args0 -> args0 }).orElse(null),
variation = javaType.variation().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy