commonMain.aws.sdk.kotlin.services.glue.model.SchemaId.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
/**
* The unique ID of the schema in the Glue schema registry.
*/
public class SchemaId private constructor(builder: Builder) {
/**
* The name of the schema registry that contains the schema.
*/
public val registryName: kotlin.String? = builder.registryName
/**
* The Amazon Resource Name (ARN) of the schema. One of `SchemaArn` or `SchemaName` has to be provided.
*/
public val schemaArn: kotlin.String? = builder.schemaArn
/**
* The name of the schema. One of `SchemaArn` or `SchemaName` has to be provided.
*/
public val schemaName: kotlin.String? = builder.schemaName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.SchemaId = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SchemaId(")
append("registryName=$registryName,")
append("schemaArn=$schemaArn,")
append("schemaName=$schemaName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = registryName?.hashCode() ?: 0
result = 31 * result + (schemaArn?.hashCode() ?: 0)
result = 31 * result + (schemaName?.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 SchemaId
if (registryName != other.registryName) return false
if (schemaArn != other.schemaArn) return false
if (schemaName != other.schemaName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.SchemaId = Builder(this).apply(block).build()
public class Builder {
/**
* The name of the schema registry that contains the schema.
*/
public var registryName: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the schema. One of `SchemaArn` or `SchemaName` has to be provided.
*/
public var schemaArn: kotlin.String? = null
/**
* The name of the schema. One of `SchemaArn` or `SchemaName` has to be provided.
*/
public var schemaName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.SchemaId) : this() {
this.registryName = x.registryName
this.schemaArn = x.schemaArn
this.schemaName = x.schemaName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.SchemaId = SchemaId(this)
internal fun correctErrors(): Builder {
return this
}
}
}