commonMain.aws.sdk.kotlin.services.glue.model.BatchPutDataQualityStatisticAnnotationRequest.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 BatchPutDataQualityStatisticAnnotationRequest private constructor(builder: Builder) {
/**
* Client Token.
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* A list of `DatapointInclusionAnnotation`'s.
*/
public val inclusionAnnotations: List? = builder.inclusionAnnotations
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.BatchPutDataQualityStatisticAnnotationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchPutDataQualityStatisticAnnotationRequest(")
append("clientToken=$clientToken,")
append("inclusionAnnotations=$inclusionAnnotations")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (inclusionAnnotations?.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 BatchPutDataQualityStatisticAnnotationRequest
if (clientToken != other.clientToken) return false
if (inclusionAnnotations != other.inclusionAnnotations) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.BatchPutDataQualityStatisticAnnotationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Client Token.
*/
public var clientToken: kotlin.String? = null
/**
* A list of `DatapointInclusionAnnotation`'s.
*/
public var inclusionAnnotations: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.BatchPutDataQualityStatisticAnnotationRequest) : this() {
this.clientToken = x.clientToken
this.inclusionAnnotations = x.inclusionAnnotations
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.BatchPutDataQualityStatisticAnnotationRequest = BatchPutDataQualityStatisticAnnotationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy