commonMain.aws.sdk.kotlin.services.computeoptimizer.model.GetRecommendationError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes an error experienced when getting recommendations.
*
* For example, an error is returned if you request recommendations for an unsupported Auto Scaling group, or if you request recommendations for an instance of an unsupported instance family.
*/
public class GetRecommendationError private constructor(builder: Builder) {
/**
* The error code.
*/
public val code: kotlin.String? = builder.code
/**
* The ID of the error.
*/
public val identifier: kotlin.String? = builder.identifier
/**
* The message, or reason, for the error.
*/
public val message: kotlin.String? = builder.message
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.GetRecommendationError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetRecommendationError(")
append("code=$code,")
append("identifier=$identifier,")
append("message=$message")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = code?.hashCode() ?: 0
result = 31 * result + (identifier?.hashCode() ?: 0)
result = 31 * result + (message?.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 GetRecommendationError
if (code != other.code) return false
if (identifier != other.identifier) return false
if (message != other.message) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.GetRecommendationError = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The error code.
*/
public var code: kotlin.String? = null
/**
* The ID of the error.
*/
public var identifier: kotlin.String? = null
/**
* The message, or reason, for the error.
*/
public var message: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.GetRecommendationError) : this() {
this.code = x.code
this.identifier = x.identifier
this.message = x.message
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.GetRecommendationError = GetRecommendationError(this)
internal fun correctErrors(): Builder {
return this
}
}
}