commonMain.aws.sdk.kotlin.services.glue.model.UpdateJsonClassifierRequest.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
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Specifies a JSON classifier to be updated.
*/
public class UpdateJsonClassifierRequest private constructor(builder: Builder) {
/**
* A `JsonPath` string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in [Writing JsonPath Custom Classifiers](https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html#custom-classifier-json).
*/
public val jsonPath: kotlin.String? = builder.jsonPath
/**
* The name of the classifier.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.UpdateJsonClassifierRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateJsonClassifierRequest(")
append("jsonPath=$jsonPath,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = jsonPath?.hashCode() ?: 0
result = 31 * result + (name.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 UpdateJsonClassifierRequest
if (jsonPath != other.jsonPath) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.UpdateJsonClassifierRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A `JsonPath` string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in [Writing JsonPath Custom Classifiers](https://docs.aws.amazon.com/glue/latest/dg/custom-classifier.html#custom-classifier-json).
*/
public var jsonPath: kotlin.String? = null
/**
* The name of the classifier.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.UpdateJsonClassifierRequest) : this() {
this.jsonPath = x.jsonPath
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.UpdateJsonClassifierRequest = UpdateJsonClassifierRequest(this)
internal fun correctErrors(): Builder {
if (name == null) name = ""
return this
}
}
}