commonMain.aws.sdk.kotlin.services.glue.model.Location.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 location of resources.
*/
public class Location private constructor(builder: Builder) {
/**
* An Amazon DynamoDB table location.
*/
public val dynamoDb: List? = builder.dynamoDb
/**
* A JDBC location.
*/
public val jdbc: List? = builder.jdbc
/**
* An Amazon Simple Storage Service (Amazon S3) location.
*/
public val s3: List? = builder.s3
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.Location = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Location(")
append("dynamoDb=$dynamoDb,")
append("jdbc=$jdbc,")
append("s3=$s3")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dynamoDb?.hashCode() ?: 0
result = 31 * result + (jdbc?.hashCode() ?: 0)
result = 31 * result + (s3?.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 Location
if (dynamoDb != other.dynamoDb) return false
if (jdbc != other.jdbc) return false
if (s3 != other.s3) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.Location = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An Amazon DynamoDB table location.
*/
public var dynamoDb: List? = null
/**
* A JDBC location.
*/
public var jdbc: List? = null
/**
* An Amazon Simple Storage Service (Amazon S3) location.
*/
public var s3: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.Location) : this() {
this.dynamoDb = x.dynamoDb
this.jdbc = x.jdbc
this.s3 = x.s3
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.Location = Location(this)
internal fun correctErrors(): Builder {
return this
}
}
}