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

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

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

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



/**
 * Specifies additional connection options for the Amazon S3 data store.
 */
public class S3SourceAdditionalOptions private constructor(builder: Builder) {
    /**
     * Sets the upper limit for the target number of files that will be processed.
     */
    public val boundedFiles: kotlin.Long? = builder.boundedFiles
    /**
     * Sets the upper limit for the target size of the dataset in bytes that will be processed.
     */
    public val boundedSize: kotlin.Long? = builder.boundedSize

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

    override fun toString(): kotlin.String = buildString {
        append("S3SourceAdditionalOptions(")
        append("boundedFiles=$boundedFiles,")
        append("boundedSize=$boundedSize")
        append(")")
    }

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

        if (boundedFiles != other.boundedFiles) return false
        if (boundedSize != other.boundedSize) return false

        return true
    }

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

    public class Builder {
        /**
         * Sets the upper limit for the target number of files that will be processed.
         */
        public var boundedFiles: kotlin.Long? = null
        /**
         * Sets the upper limit for the target size of the dataset in bytes that will be processed.
         */
        public var boundedSize: kotlin.Long? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.S3SourceAdditionalOptions) : this() {
            this.boundedFiles = x.boundedFiles
            this.boundedSize = x.boundedSize
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy