commonMain.aws.sdk.kotlin.services.personalize.model.MetricAttributionSummary.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
The newest version!
// 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
/**
* Provides a summary of the properties of a metric attribution. For a complete listing, call the [DescribeMetricAttribution](https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeMetricAttribution.html).
*/
public class MetricAttributionSummary private constructor(builder: Builder) {
/**
* The metric attribution's creation date time.
*/
public val creationDateTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationDateTime
/**
* The metric attribution's failure reason.
*/
public val failureReason: kotlin.String? = builder.failureReason
/**
* The metric attribution's last updated date time.
*/
public val lastUpdatedDateTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedDateTime
/**
* The metric attribution's Amazon Resource Name (ARN).
*/
public val metricAttributionArn: kotlin.String? = builder.metricAttributionArn
/**
* The name of the metric attribution.
*/
public val name: kotlin.String? = builder.name
/**
* The metric attribution's status.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.MetricAttributionSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("MetricAttributionSummary(")
append("creationDateTime=$creationDateTime,")
append("failureReason=$failureReason,")
append("lastUpdatedDateTime=$lastUpdatedDateTime,")
append("metricAttributionArn=$metricAttributionArn,")
append("name=$name,")
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 + (metricAttributionArn?.hashCode() ?: 0)
result = 31 * result + (name?.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 MetricAttributionSummary
if (creationDateTime != other.creationDateTime) return false
if (failureReason != other.failureReason) return false
if (lastUpdatedDateTime != other.lastUpdatedDateTime) return false
if (metricAttributionArn != other.metricAttributionArn) return false
if (name != other.name) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.MetricAttributionSummary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The metric attribution's creation date time.
*/
public var creationDateTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The metric attribution's failure reason.
*/
public var failureReason: kotlin.String? = null
/**
* The metric attribution's last updated date time.
*/
public var lastUpdatedDateTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The metric attribution's Amazon Resource Name (ARN).
*/
public var metricAttributionArn: kotlin.String? = null
/**
* The name of the metric attribution.
*/
public var name: kotlin.String? = null
/**
* The metric attribution's status.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.personalize.model.MetricAttributionSummary) : this() {
this.creationDateTime = x.creationDateTime
this.failureReason = x.failureReason
this.lastUpdatedDateTime = x.lastUpdatedDateTime
this.metricAttributionArn = x.metricAttributionArn
this.name = x.name
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.personalize.model.MetricAttributionSummary = MetricAttributionSummary(this)
internal fun correctErrors(): Builder {
return this
}
}
}