commonMain.aws.sdk.kotlin.services.athena.model.SessionStatistics.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains statistics for a session.
*/
public class SessionStatistics private constructor(builder: Builder) {
/**
* The data processing unit execution time for a session in milliseconds.
*/
public val dpuExecutionInMillis: kotlin.Long? = builder.dpuExecutionInMillis
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.SessionStatistics = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SessionStatistics(")
append("dpuExecutionInMillis=$dpuExecutionInMillis")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dpuExecutionInMillis?.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 SessionStatistics
if (dpuExecutionInMillis != other.dpuExecutionInMillis) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.SessionStatistics = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The data processing unit execution time for a session in milliseconds.
*/
public var dpuExecutionInMillis: kotlin.Long? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.SessionStatistics) : this() {
this.dpuExecutionInMillis = x.dpuExecutionInMillis
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.SessionStatistics = SessionStatistics(this)
internal fun correctErrors(): Builder {
return this
}
}
}