commonMain.aws.sdk.kotlin.services.sagemakeredge.model.Checksum.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakeredge-jvm Show documentation
Show all versions of sagemakeredge-jvm Show documentation
The AWS SDK for Kotlin client for Sagemaker Edge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakeredge.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about the checksum of a model deployed on a device.
*/
public class Checksum private constructor(builder: Builder) {
/**
* The checksum of the model.
*/
public val sum: kotlin.String? = builder.sum
/**
* The type of the checksum.
*/
public val type: aws.sdk.kotlin.services.sagemakeredge.model.ChecksumType? = builder.type
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.sagemakeredge.model.Checksum = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Checksum(")
append("sum=$sum,")
append("type=$type")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = sum?.hashCode() ?: 0
result = 31 * result + (type?.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 Checksum
if (sum != other.sum) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.sagemakeredge.model.Checksum = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The checksum of the model.
*/
public var sum: kotlin.String? = null
/**
* The type of the checksum.
*/
public var type: aws.sdk.kotlin.services.sagemakeredge.model.ChecksumType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.sagemakeredge.model.Checksum) : this() {
this.sum = x.sum
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.sagemakeredge.model.Checksum = Checksum(this)
internal fun correctErrors(): Builder {
return this
}
}
}