commonMain.aws.sdk.kotlin.services.route53.model.HostedZoneLimit.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 type of limit that you specified in the request and the current value for that limit.
*/
public class HostedZoneLimit private constructor(builder: Builder) {
/**
* The limit that you requested. Valid values include the following:
* + **MAX_RRSETS_BY_ZONE**: The maximum number of records that you can create in the specified hosted zone.
* + **MAX_VPCS_ASSOCIATED_BY_ZONE**: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.
*/
public val type: aws.sdk.kotlin.services.route53.model.HostedZoneLimitType = requireNotNull(builder.type) { "A non-null value must be provided for type" }
/**
* The current value for the limit that is specified by `Type`.
*/
public val value: kotlin.Long = requireNotNull(builder.value) { "A non-null value must be provided for value" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.HostedZoneLimit = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("HostedZoneLimit(")
append("type=$type,")
append("value=$value")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = type.hashCode()
result = 31 * result + (value.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 HostedZoneLimit
if (type != other.type) return false
if (value != other.value) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.HostedZoneLimit = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The limit that you requested. Valid values include the following:
* + **MAX_RRSETS_BY_ZONE**: The maximum number of records that you can create in the specified hosted zone.
* + **MAX_VPCS_ASSOCIATED_BY_ZONE**: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.
*/
public var type: aws.sdk.kotlin.services.route53.model.HostedZoneLimitType? = null
/**
* The current value for the limit that is specified by `Type`.
*/
public var value: kotlin.Long? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.HostedZoneLimit) : this() {
this.type = x.type
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.HostedZoneLimit = HostedZoneLimit(this)
internal fun correctErrors(): Builder {
if (type == null) type = HostedZoneLimitType.SdkUnknown("no value provided")
if (value == null) value = 0L
return this
}
}
}