commonMain.aws.sdk.kotlin.services.glue.model.GlueTable.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
/**
* The database and table in the Glue Data Catalog that is used for input or output data.
*/
public class GlueTable private constructor(builder: Builder) {
/**
* Additional options for the table. Currently there are two keys supported:
* + `pushDownPredicate`: to filter on partitions without having to list and read all the files in your dataset.
* + `catalogPartitionPredicate`: to use server-side partition pruning using partition indexes in the Glue Data Catalog.
*/
public val additionalOptions: Map? = builder.additionalOptions
/**
* A unique identifier for the Glue Data Catalog.
*/
public val catalogId: kotlin.String? = builder.catalogId
/**
* The name of the connection to the Glue Data Catalog.
*/
public val connectionName: kotlin.String? = builder.connectionName
/**
* A database name in the Glue Data Catalog.
*/
public val databaseName: kotlin.String = requireNotNull(builder.databaseName) { "A non-null value must be provided for databaseName" }
/**
* A table name in the Glue Data Catalog.
*/
public val tableName: kotlin.String = requireNotNull(builder.tableName) { "A non-null value must be provided for tableName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GlueTable = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GlueTable(")
append("additionalOptions=$additionalOptions,")
append("catalogId=$catalogId,")
append("connectionName=$connectionName,")
append("databaseName=$databaseName,")
append("tableName=$tableName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = additionalOptions?.hashCode() ?: 0
result = 31 * result + (catalogId?.hashCode() ?: 0)
result = 31 * result + (connectionName?.hashCode() ?: 0)
result = 31 * result + (databaseName.hashCode())
result = 31 * result + (tableName.hashCode())
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 GlueTable
if (additionalOptions != other.additionalOptions) return false
if (catalogId != other.catalogId) return false
if (connectionName != other.connectionName) return false
if (databaseName != other.databaseName) return false
if (tableName != other.tableName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GlueTable = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Additional options for the table. Currently there are two keys supported:
* + `pushDownPredicate`: to filter on partitions without having to list and read all the files in your dataset.
* + `catalogPartitionPredicate`: to use server-side partition pruning using partition indexes in the Glue Data Catalog.
*/
public var additionalOptions: Map? = null
/**
* A unique identifier for the Glue Data Catalog.
*/
public var catalogId: kotlin.String? = null
/**
* The name of the connection to the Glue Data Catalog.
*/
public var connectionName: kotlin.String? = null
/**
* A database name in the Glue Data Catalog.
*/
public var databaseName: kotlin.String? = null
/**
* A table name in the Glue Data Catalog.
*/
public var tableName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GlueTable) : this() {
this.additionalOptions = x.additionalOptions
this.catalogId = x.catalogId
this.connectionName = x.connectionName
this.databaseName = x.databaseName
this.tableName = x.tableName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GlueTable = GlueTable(this)
internal fun correctErrors(): Builder {
if (databaseName == null) databaseName = ""
if (tableName == null) tableName = ""
return this
}
}
}