commonMain.aws.sdk.kotlin.services.route53.model.GetHostedZoneCountResponse.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 a `GetHostedZoneCount` request.
*/
public class GetHostedZoneCountResponse private constructor(builder: Builder) {
/**
* The total number of public and private hosted zones that are associated with the current Amazon Web Services account.
*/
public val hostedZoneCount: kotlin.Long = requireNotNull(builder.hostedZoneCount) { "A non-null value must be provided for hostedZoneCount" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.GetHostedZoneCountResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetHostedZoneCountResponse(")
append("hostedZoneCount=$hostedZoneCount")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = hostedZoneCount.hashCode()
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 GetHostedZoneCountResponse
if (hostedZoneCount != other.hostedZoneCount) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.GetHostedZoneCountResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The total number of public and private hosted zones that are associated with the current Amazon Web Services account.
*/
public var hostedZoneCount: kotlin.Long? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.GetHostedZoneCountResponse) : this() {
this.hostedZoneCount = x.hostedZoneCount
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.GetHostedZoneCountResponse = GetHostedZoneCountResponse(this)
internal fun correctErrors(): Builder {
if (hostedZoneCount == null) hostedZoneCount = 0L
return this
}
}
}