All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionConfiguration.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.glue.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The configuration for an Iceberg orphan file deletion optimizer.
 */
public class IcebergOrphanFileDeletionConfiguration private constructor(builder: Builder) {
    /**
     * Specifies a directory in which to look for files (defaults to the table's location). You may choose a sub-directory rather than the top-level table location.
     */
    public val location: kotlin.String? = builder.location
    /**
     * The number of days that orphan files should be retained before file deletion. If an input is not provided, the default value 3 will be used.
     */
    public val orphanFileRetentionPeriodInDays: kotlin.Int? = builder.orphanFileRetentionPeriodInDays

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionConfiguration = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("IcebergOrphanFileDeletionConfiguration(")
        append("location=$location,")
        append("orphanFileRetentionPeriodInDays=$orphanFileRetentionPeriodInDays")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = location?.hashCode() ?: 0
        result = 31 * result + (orphanFileRetentionPeriodInDays ?: 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 IcebergOrphanFileDeletionConfiguration

        if (location != other.location) return false
        if (orphanFileRetentionPeriodInDays != other.orphanFileRetentionPeriodInDays) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionConfiguration = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Specifies a directory in which to look for files (defaults to the table's location). You may choose a sub-directory rather than the top-level table location.
         */
        public var location: kotlin.String? = null
        /**
         * The number of days that orphan files should be retained before file deletion. If an input is not provided, the default value 3 will be used.
         */
        public var orphanFileRetentionPeriodInDays: kotlin.Int? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionConfiguration) : this() {
            this.location = x.location
            this.orphanFileRetentionPeriodInDays = x.orphanFileRetentionPeriodInDays
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.glue.model.IcebergOrphanFileDeletionConfiguration = IcebergOrphanFileDeletionConfiguration(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy