commonMain.aws.sdk.kotlin.services.route53.model.GetHealthCheckLastFailureReasonRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53-jvm Show documentation
Show all versions of route53-jvm Show documentation
The AWS SDK for Kotlin client for Route 53
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A request for the reason that a health check failed most recently.
*/
public class GetHealthCheckLastFailureReasonRequest private constructor(builder: Builder) {
/**
* The ID for the health check for which you want the last failure reason. When you created the health check, `CreateHealthCheck` returned the ID in the response, in the `HealthCheckId` element.
*
* If you want to get the last failure reason for a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can't use `GetHealthCheckLastFailureReason` for a calculated health check.
*/
public val healthCheckId: kotlin.String? = builder.healthCheckId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.GetHealthCheckLastFailureReasonRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetHealthCheckLastFailureReasonRequest(")
append("healthCheckId=$healthCheckId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = healthCheckId?.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 GetHealthCheckLastFailureReasonRequest
if (healthCheckId != other.healthCheckId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.GetHealthCheckLastFailureReasonRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID for the health check for which you want the last failure reason. When you created the health check, `CreateHealthCheck` returned the ID in the response, in the `HealthCheckId` element.
*
* If you want to get the last failure reason for a calculated health check, you must use the Amazon Route 53 console or the CloudWatch console. You can't use `GetHealthCheckLastFailureReason` for a calculated health check.
*/
public var healthCheckId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.GetHealthCheckLastFailureReasonRequest) : this() {
this.healthCheckId = x.healthCheckId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.GetHealthCheckLastFailureReasonRequest = GetHealthCheckLastFailureReasonRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}