commonMain.aws.sdk.kotlin.services.codeartifact.model.PackageVersionError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codeartifact-jvm Show documentation
Show all versions of codeartifact-jvm Show documentation
The AWS SDK for Kotlin client for codeartifact
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codeartifact.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* l An error associated with package.
*/
public class PackageVersionError private constructor(builder: Builder) {
/**
* The error code associated with the error. Valid error codes are:
* + `ALREADY_EXISTS`
* + `MISMATCHED_REVISION`
* + `MISMATCHED_STATUS`
* + `NOT_ALLOWED`
* + `NOT_FOUND`
* + `SKIPPED`
*/
public val errorCode: aws.sdk.kotlin.services.codeartifact.model.PackageVersionErrorCode? = builder.errorCode
/**
* The error message associated with the error.
*/
public val errorMessage: kotlin.String? = builder.errorMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codeartifact.model.PackageVersionError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PackageVersionError(")
append("errorCode=$errorCode,")
append("errorMessage=$errorMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = errorCode?.hashCode() ?: 0
result = 31 * result + (errorMessage?.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 PackageVersionError
if (errorCode != other.errorCode) return false
if (errorMessage != other.errorMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codeartifact.model.PackageVersionError = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The error code associated with the error. Valid error codes are:
* + `ALREADY_EXISTS`
* + `MISMATCHED_REVISION`
* + `MISMATCHED_STATUS`
* + `NOT_ALLOWED`
* + `NOT_FOUND`
* + `SKIPPED`
*/
public var errorCode: aws.sdk.kotlin.services.codeartifact.model.PackageVersionErrorCode? = null
/**
* The error message associated with the error.
*/
public var errorMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codeartifact.model.PackageVersionError) : this() {
this.errorCode = x.errorCode
this.errorMessage = x.errorMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codeartifact.model.PackageVersionError = PackageVersionError(this)
internal fun correctErrors(): Builder {
return this
}
}
}