commonMain.aws.sdk.kotlin.services.glue.model.OrphanFileDeletionMetrics.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A structure that contains orphan file deletion metrics for the optimizer run.
*/
public class OrphanFileDeletionMetrics private constructor(builder: Builder) {
/**
* A structure containing the Iceberg orphan file deletion metrics for the optimizer run.
*/
public val icebergMetrics: aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionMetrics? = builder.icebergMetrics
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.OrphanFileDeletionMetrics = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("OrphanFileDeletionMetrics(")
append("icebergMetrics=$icebergMetrics")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = icebergMetrics?.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 OrphanFileDeletionMetrics
if (icebergMetrics != other.icebergMetrics) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.OrphanFileDeletionMetrics = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A structure containing the Iceberg orphan file deletion metrics for the optimizer run.
*/
public var icebergMetrics: aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionMetrics? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.OrphanFileDeletionMetrics) : this() {
this.icebergMetrics = x.icebergMetrics
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.OrphanFileDeletionMetrics = OrphanFileDeletionMetrics(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionMetrics] inside the given [block]
*/
public fun icebergMetrics(block: aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionMetrics.Builder.() -> kotlin.Unit) {
this.icebergMetrics = aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionMetrics.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}