commonMain.aws.sdk.kotlin.services.personalize.model.IntegerHyperParameterRange.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personalize-jvm Show documentation
Show all versions of personalize-jvm Show documentation
The AWS SDK for Kotlin client for Personalize
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.personalize.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Provides the name and range of an integer-valued hyperparameter.
*/
public class IntegerHyperParameterRange private constructor(builder: Builder) {
/**
* The maximum allowable value for the hyperparameter.
*/
public val maxValue: kotlin.Int = builder.maxValue
/**
* The minimum allowable value for the hyperparameter.
*/
public val minValue: kotlin.Int = builder.minValue
/**
* The name of the hyperparameter.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.IntegerHyperParameterRange = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("IntegerHyperParameterRange(")
append("maxValue=$maxValue,")
append("minValue=$minValue,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = maxValue
result = 31 * result + (minValue)
result = 31 * result + (name?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as IntegerHyperParameterRange
if (maxValue != other.maxValue) return false
if (minValue != other.minValue) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.IntegerHyperParameterRange = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The maximum allowable value for the hyperparameter.
*/
public var maxValue: kotlin.Int = 0
/**
* The minimum allowable value for the hyperparameter.
*/
public var minValue: kotlin.Int = 0
/**
* The name of the hyperparameter.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.IntegerHyperParameterRange) : this() {
this.maxValue = x.maxValue
this.minValue = x.minValue
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.IntegerHyperParameterRange = IntegerHyperParameterRange(this)
internal fun correctErrors(): Builder {
return this
}
}
}