commonMain.aws.sdk.kotlin.services.glue.model.S3DirectSourceAdditionalOptions.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
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Specifies additional connection options for the Amazon S3 data store.
*/
public class S3DirectSourceAdditionalOptions 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
/**
* Sets option to enable a sample path.
*/
public val enableSamplePath: kotlin.Boolean? = builder.enableSamplePath
/**
* If enabled, specifies the sample path.
*/
public val samplePath: kotlin.String? = builder.samplePath
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.S3DirectSourceAdditionalOptions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("S3DirectSourceAdditionalOptions(")
append("boundedFiles=$boundedFiles,")
append("boundedSize=$boundedSize,")
append("enableSamplePath=$enableSamplePath,")
append("samplePath=$samplePath")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = boundedFiles?.hashCode() ?: 0
result = 31 * result + (boundedSize?.hashCode() ?: 0)
result = 31 * result + (enableSamplePath?.hashCode() ?: 0)
result = 31 * result + (samplePath?.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 S3DirectSourceAdditionalOptions
if (boundedFiles != other.boundedFiles) return false
if (boundedSize != other.boundedSize) return false
if (enableSamplePath != other.enableSamplePath) return false
if (samplePath != other.samplePath) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.S3DirectSourceAdditionalOptions = Builder(this).apply(block).build()
@SdkDsl
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
/**
* Sets option to enable a sample path.
*/
public var enableSamplePath: kotlin.Boolean? = null
/**
* If enabled, specifies the sample path.
*/
public var samplePath: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.S3DirectSourceAdditionalOptions) : this() {
this.boundedFiles = x.boundedFiles
this.boundedSize = x.boundedSize
this.enableSamplePath = x.enableSamplePath
this.samplePath = x.samplePath
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.S3DirectSourceAdditionalOptions = S3DirectSourceAdditionalOptions(this)
internal fun correctErrors(): Builder {
return this
}
}
}