
com.pulumi.awsnative.personalize.kotlin.outputs.SolutionCategoricalHyperParameterRange.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.personalize.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Provides the name and values of a Categorical hyperparameter.
* @property name The name of the hyperparameter.
* @property values A list of the categories for the hyperparameter.
*/
public data class SolutionCategoricalHyperParameterRange(
public val name: String? = null,
public val values: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.personalize.outputs.SolutionCategoricalHyperParameterRange): SolutionCategoricalHyperParameterRange = SolutionCategoricalHyperParameterRange(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
values = javaType.values().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy