commonMain.aws.sdk.kotlin.services.cleanroomsml.model.InferenceResourceConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleanroomsml-jvm Show documentation
Show all versions of cleanroomsml-jvm Show documentation
The AWS SDK for Kotlin client for CleanRoomsML
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cleanroomsml.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Defines the resources used to perform model inference.
*/
public class InferenceResourceConfig private constructor(builder: Builder) {
/**
* The number of instances to use.
*/
public val instanceCount: kotlin.Int = builder.instanceCount
/**
* The type of instance that is used to perform model inference.
*/
public val instanceType: aws.sdk.kotlin.services.cleanroomsml.model.InferenceInstanceType = requireNotNull(builder.instanceType) { "A non-null value must be provided for instanceType" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.InferenceResourceConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InferenceResourceConfig(")
append("instanceCount=$instanceCount,")
append("instanceType=$instanceType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = instanceCount
result = 31 * result + (instanceType.hashCode())
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 InferenceResourceConfig
if (instanceCount != other.instanceCount) return false
if (instanceType != other.instanceType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.InferenceResourceConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The number of instances to use.
*/
public var instanceCount: kotlin.Int = 1
/**
* The type of instance that is used to perform model inference.
*/
public var instanceType: aws.sdk.kotlin.services.cleanroomsml.model.InferenceInstanceType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.InferenceResourceConfig) : this() {
this.instanceCount = x.instanceCount
this.instanceType = x.instanceType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.InferenceResourceConfig = InferenceResourceConfig(this)
internal fun correctErrors(): Builder {
if (instanceType == null) instanceType = InferenceInstanceType.SdkUnknown("no value provided")
return this
}
}
}