commonMain.aws.sdk.kotlin.services.glue.model.AnnotationError.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
/**
* A failed annotation.
*/
public class AnnotationError private constructor(builder: Builder) {
/**
* The reason why the annotation failed.
*/
public val failureReason: kotlin.String? = builder.failureReason
/**
* The Profile ID for the failed annotation.
*/
public val profileId: kotlin.String? = builder.profileId
/**
* The Statistic ID for the failed annotation.
*/
public val statisticId: kotlin.String? = builder.statisticId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.AnnotationError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AnnotationError(")
append("failureReason=$failureReason,")
append("profileId=$profileId,")
append("statisticId=$statisticId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = failureReason?.hashCode() ?: 0
result = 31 * result + (profileId?.hashCode() ?: 0)
result = 31 * result + (statisticId?.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 AnnotationError
if (failureReason != other.failureReason) return false
if (profileId != other.profileId) return false
if (statisticId != other.statisticId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.AnnotationError = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The reason why the annotation failed.
*/
public var failureReason: kotlin.String? = null
/**
* The Profile ID for the failed annotation.
*/
public var profileId: kotlin.String? = null
/**
* The Statistic ID for the failed annotation.
*/
public var statisticId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.AnnotationError) : this() {
this.failureReason = x.failureReason
this.profileId = x.profileId
this.statisticId = x.statisticId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.AnnotationError = AnnotationError(this)
internal fun correctErrors(): Builder {
return this
}
}
}