commonMain.aws.sdk.kotlin.services.glue.model.S3SourceAdditionalOptions.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
/**
* 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
}
}
}