commonMain.aws.sdk.kotlin.services.route53.model.UpdateHealthCheckResponse.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 complex type that contains the response to the `UpdateHealthCheck` request.
*/
public class UpdateHealthCheckResponse private constructor(builder: Builder) {
/**
* A complex type that contains the response to an `UpdateHealthCheck` request.
*/
public val healthCheck: aws.sdk.kotlin.services.route53.model.HealthCheck? = builder.healthCheck
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.UpdateHealthCheckResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateHealthCheckResponse(")
append("healthCheck=$healthCheck")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = healthCheck?.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 UpdateHealthCheckResponse
if (healthCheck != other.healthCheck) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.UpdateHealthCheckResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A complex type that contains the response to an `UpdateHealthCheck` request.
*/
public var healthCheck: aws.sdk.kotlin.services.route53.model.HealthCheck? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.UpdateHealthCheckResponse) : this() {
this.healthCheck = x.healthCheck
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.UpdateHealthCheckResponse = UpdateHealthCheckResponse(this)
/**
* construct an [aws.sdk.kotlin.services.route53.model.HealthCheck] inside the given [block]
*/
public fun healthCheck(block: aws.sdk.kotlin.services.route53.model.HealthCheck.Builder.() -> kotlin.Unit) {
this.healthCheck = aws.sdk.kotlin.services.route53.model.HealthCheck.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}