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