commonMain.aws.sdk.kotlin.services.glue.model.RegisterSchemaVersionRequest.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
public class RegisterSchemaVersionRequest private constructor(builder: Builder) {
/**
* The schema definition using the `DataFormat` setting for the `SchemaName`.
*/
public val schemaDefinition: kotlin.String? = builder.schemaDefinition
/**
* This is a wrapper structure to contain schema identity fields. The structure contains:
* + SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either `SchemaArn` or `SchemaName` and `RegistryName` has to be provided.
* + SchemaId$SchemaName: The name of the schema. Either `SchemaArn` or `SchemaName` and `RegistryName` has to be provided.
*/
public val schemaId: aws.sdk.kotlin.services.glue.model.SchemaId? = builder.schemaId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.RegisterSchemaVersionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RegisterSchemaVersionRequest(")
append("schemaDefinition=$schemaDefinition,")
append("schemaId=$schemaId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = schemaDefinition?.hashCode() ?: 0
result = 31 * result + (schemaId?.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 RegisterSchemaVersionRequest
if (schemaDefinition != other.schemaDefinition) return false
if (schemaId != other.schemaId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.RegisterSchemaVersionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The schema definition using the `DataFormat` setting for the `SchemaName`.
*/
public var schemaDefinition: kotlin.String? = null
/**
* This is a wrapper structure to contain schema identity fields. The structure contains:
* + SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either `SchemaArn` or `SchemaName` and `RegistryName` has to be provided.
* + SchemaId$SchemaName: The name of the schema. Either `SchemaArn` or `SchemaName` and `RegistryName` has to be provided.
*/
public var schemaId: aws.sdk.kotlin.services.glue.model.SchemaId? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.RegisterSchemaVersionRequest) : this() {
this.schemaDefinition = x.schemaDefinition
this.schemaId = x.schemaId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.RegisterSchemaVersionRequest = RegisterSchemaVersionRequest(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.SchemaId] inside the given [block]
*/
public fun schemaId(block: aws.sdk.kotlin.services.glue.model.SchemaId.Builder.() -> kotlin.Unit) {
this.schemaId = aws.sdk.kotlin.services.glue.model.SchemaId.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}