SolutionIntegerHyperParameterRangeArgs

data class SolutionIntegerHyperParameterRangeArgs(val maxValue: Output<Int>? = null, val minValue: Output<Int>? = null, val name: Output<String>? = null) : ConvertibleToJava<SolutionIntegerHyperParameterRangeArgs>

Provides the name and range of an integer-valued hyperparameter.

Constructors

Link copied to clipboard
constructor(maxValue: Output<Int>? = null, minValue: Output<Int>? = null, name: Output<String>? = null)

Properties

Link copied to clipboard
val maxValue: Output<Int>? = null

The maximum allowable value for the hyperparameter.

Link copied to clipboard
val minValue: Output<Int>? = null

The minimum allowable value for the hyperparameter.

Link copied to clipboard
val name: Output<String>? = null

The name of the hyperparameter.

Functions

Link copied to clipboard
open override fun toJava(): SolutionIntegerHyperParameterRangeArgs