commonMain.aws.sdk.kotlin.services.resiliencehub.model.ResourceErrorsDetails.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resiliencehub-jvm Show documentation
Show all versions of resiliencehub-jvm Show documentation
The AWS SDK for Kotlin client for resiliencehub
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.resiliencehub.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A list of errors retrieving an application's resources.
*/
public class ResourceErrorsDetails private constructor(builder: Builder) {
/**
* This indicates if there are more errors not listed in the resourceErrors list.
*/
public val hasMoreErrors: kotlin.Boolean? = builder.hasMoreErrors
/**
* A list of errors retrieving an application's resources.
*/
public val resourceErrors: List? = builder.resourceErrors
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.ResourceErrorsDetails = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ResourceErrorsDetails(")
append("hasMoreErrors=$hasMoreErrors,")
append("resourceErrors=$resourceErrors")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = hasMoreErrors?.hashCode() ?: 0
result = 31 * result + (resourceErrors?.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 ResourceErrorsDetails
if (hasMoreErrors != other.hasMoreErrors) return false
if (resourceErrors != other.resourceErrors) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.ResourceErrorsDetails = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* This indicates if there are more errors not listed in the resourceErrors list.
*/
public var hasMoreErrors: kotlin.Boolean? = null
/**
* A list of errors retrieving an application's resources.
*/
public var resourceErrors: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.ResourceErrorsDetails) : this() {
this.hasMoreErrors = x.hasMoreErrors
this.resourceErrors = x.resourceErrors
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.ResourceErrorsDetails = ResourceErrorsDetails(this)
internal fun correctErrors(): Builder {
return this
}
}
}