commonMain.aws.sdk.kotlin.services.personalize.model.DatasetUpdateSummary.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
import aws.smithy.kotlin.runtime.time.Instant
/**
* Describes an update to a dataset.
*/
public class DatasetUpdateSummary private constructor(builder: Builder) {
/**
* The creation date and time (in Unix time) of the dataset update.
*/
public val creationDateTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationDateTime
/**
* If updating a dataset fails, provides the reason why.
*/
public val failureReason: kotlin.String? = builder.failureReason
/**
* The last update date and time (in Unix time) of the dataset.
*/
public val lastUpdatedDateTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedDateTime
/**
* The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.
*/
public val schemaArn: kotlin.String? = builder.schemaArn
/**
* The status of the dataset update.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.DatasetUpdateSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DatasetUpdateSummary(")
append("creationDateTime=$creationDateTime,")
append("failureReason=$failureReason,")
append("lastUpdatedDateTime=$lastUpdatedDateTime,")
append("schemaArn=$schemaArn,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = creationDateTime?.hashCode() ?: 0
result = 31 * result + (failureReason?.hashCode() ?: 0)
result = 31 * result + (lastUpdatedDateTime?.hashCode() ?: 0)
result = 31 * result + (schemaArn?.hashCode() ?: 0)
result = 31 * result + (status?.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 DatasetUpdateSummary
if (creationDateTime != other.creationDateTime) return false
if (failureReason != other.failureReason) return false
if (lastUpdatedDateTime != other.lastUpdatedDateTime) return false
if (schemaArn != other.schemaArn) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.DatasetUpdateSummary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The creation date and time (in Unix time) of the dataset update.
*/
public var creationDateTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* If updating a dataset fails, provides the reason why.
*/
public var failureReason: kotlin.String? = null
/**
* The last update date and time (in Unix time) of the dataset.
*/
public var lastUpdatedDateTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.
*/
public var schemaArn: kotlin.String? = null
/**
* The status of the dataset update.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.DatasetUpdateSummary) : this() {
this.creationDateTime = x.creationDateTime
this.failureReason = x.failureReason
this.lastUpdatedDateTime = x.lastUpdatedDateTime
this.schemaArn = x.schemaArn
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.DatasetUpdateSummary = DatasetUpdateSummary(this)
internal fun correctErrors(): Builder {
return this
}
}
}