commonMain.aws.sdk.kotlin.services.personalize.model.CategoricalHyperParameterRange.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 a categorical hyperparameter.
*/
public class CategoricalHyperParameterRange private constructor(builder: Builder) {
/**
* The name of the hyperparameter.
*/
public val name: kotlin.String? = builder.name
/**
* A list of the categories for the hyperparameter.
*/
public val values: List? = builder.values
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.CategoricalHyperParameterRange = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CategoricalHyperParameterRange(")
append("name=$name,")
append("values=$values")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (values?.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 CategoricalHyperParameterRange
if (name != other.name) return false
if (values != other.values) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.CategoricalHyperParameterRange = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the hyperparameter.
*/
public var name: kotlin.String? = null
/**
* A list of the categories for the hyperparameter.
*/
public var values: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.CategoricalHyperParameterRange) : this() {
this.name = x.name
this.values = x.values
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.CategoricalHyperParameterRange = CategoricalHyperParameterRange(this)
internal fun correctErrors(): Builder {
return this
}
}
}