![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.gamelift.kotlin.enums.MatchmakingConfigurationFlexMatchMode.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.gamelift.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Indicates whether this matchmaking configuration is being used with Amazon GameLift hosting or as a standalone matchmaking solution.
*/
public enum class MatchmakingConfigurationFlexMatchMode(
public val javaValue: com.pulumi.awsnative.gamelift.enums.MatchmakingConfigurationFlexMatchMode,
) : ConvertibleToJava {
Standalone(com.pulumi.awsnative.gamelift.enums.MatchmakingConfigurationFlexMatchMode.Standalone),
WithQueue(com.pulumi.awsnative.gamelift.enums.MatchmakingConfigurationFlexMatchMode.WithQueue),
;
override fun toJava(): com.pulumi.awsnative.gamelift.enums.MatchmakingConfigurationFlexMatchMode =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.gamelift.enums.MatchmakingConfigurationFlexMatchMode): MatchmakingConfigurationFlexMatchMode =
MatchmakingConfigurationFlexMatchMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy