commonMain.aws.sdk.kotlin.services.route53.model.GetAccountLimitRequest.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 information about the request to create a hosted zone.
*/
public class GetAccountLimitRequest private constructor(builder: Builder) {
/**
* The limit that you want to get. Valid values include the following:
* + **MAX_HEALTH_CHECKS_BY_OWNER**: The maximum number of health checks that you can create using the current account.
* + **MAX_HOSTED_ZONES_BY_OWNER**: The maximum number of hosted zones that you can create using the current account.
* + **MAX_REUSABLE_DELEGATION_SETS_BY_OWNER**: The maximum number of reusable delegation sets that you can create using the current account.
* + **MAX_TRAFFIC_POLICIES_BY_OWNER**: The maximum number of traffic policies that you can create using the current account.
* + **MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER**: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)
*/
public val type: aws.sdk.kotlin.services.route53.model.AccountLimitType? = builder.type
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.GetAccountLimitRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetAccountLimitRequest(")
append("type=$type")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = type?.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 GetAccountLimitRequest
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.GetAccountLimitRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The limit that you want to get. Valid values include the following:
* + **MAX_HEALTH_CHECKS_BY_OWNER**: The maximum number of health checks that you can create using the current account.
* + **MAX_HOSTED_ZONES_BY_OWNER**: The maximum number of hosted zones that you can create using the current account.
* + **MAX_REUSABLE_DELEGATION_SETS_BY_OWNER**: The maximum number of reusable delegation sets that you can create using the current account.
* + **MAX_TRAFFIC_POLICIES_BY_OWNER**: The maximum number of traffic policies that you can create using the current account.
* + **MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER**: The maximum number of traffic policy instances that you can create using the current account. (Traffic policy instances are referred to as traffic flow policy records in the Amazon Route 53 console.)
*/
public var type: aws.sdk.kotlin.services.route53.model.AccountLimitType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.GetAccountLimitRequest) : this() {
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.GetAccountLimitRequest = GetAccountLimitRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}