commonMain.aws.sdk.kotlin.services.personalize.model.HpoResourceConfig.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
/**
* Describes the resource configuration for hyperparameter optimization (HPO).
*/
public class HpoResourceConfig private constructor(builder: Builder) {
/**
* The maximum number of training jobs when you create a solution version. The maximum value for `maxNumberOfTrainingJobs` is `40`.
*/
public val maxNumberOfTrainingJobs: kotlin.String? = builder.maxNumberOfTrainingJobs
/**
* The maximum number of parallel training jobs when you create a solution version. The maximum value for `maxParallelTrainingJobs` is `10`.
*/
public val maxParallelTrainingJobs: kotlin.String? = builder.maxParallelTrainingJobs
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.HpoResourceConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("HpoResourceConfig(")
append("maxNumberOfTrainingJobs=$maxNumberOfTrainingJobs,")
append("maxParallelTrainingJobs=$maxParallelTrainingJobs")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = maxNumberOfTrainingJobs?.hashCode() ?: 0
result = 31 * result + (maxParallelTrainingJobs?.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 HpoResourceConfig
if (maxNumberOfTrainingJobs != other.maxNumberOfTrainingJobs) return false
if (maxParallelTrainingJobs != other.maxParallelTrainingJobs) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.HpoResourceConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The maximum number of training jobs when you create a solution version. The maximum value for `maxNumberOfTrainingJobs` is `40`.
*/
public var maxNumberOfTrainingJobs: kotlin.String? = null
/**
* The maximum number of parallel training jobs when you create a solution version. The maximum value for `maxParallelTrainingJobs` is `10`.
*/
public var maxParallelTrainingJobs: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.HpoResourceConfig) : this() {
this.maxNumberOfTrainingJobs = x.maxNumberOfTrainingJobs
this.maxParallelTrainingJobs = x.maxParallelTrainingJobs
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.HpoResourceConfig = HpoResourceConfig(this)
internal fun correctErrors(): Builder {
return this
}
}
}