All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.personalize.kotlin.outputs.SolutionContinuousHyperParameterRange.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.personalize.kotlin.outputs

import kotlin.Double
import kotlin.String
import kotlin.Suppress

/**
 * Provides the name and range of a continuous hyperparameter.
 * @property maxValue The maximum allowable value for the hyperparameter.
 * @property minValue The minimum allowable value for the hyperparameter.
 * @property name The name of the hyperparameter.
 */
public data class SolutionContinuousHyperParameterRange(
    public val maxValue: Double? = null,
    public val minValue: Double? = null,
    public val name: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.personalize.outputs.SolutionContinuousHyperParameterRange): SolutionContinuousHyperParameterRange = SolutionContinuousHyperParameterRange(
            maxValue = javaType.maxValue().map({ args0 -> args0 }).orElse(null),
            minValue = javaType.minValue().map({ args0 -> args0 }).orElse(null),
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy