All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.route53.model.GetReusableDelegationSetLimitRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show 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 information about the request to create a hosted zone.
 */
public class GetReusableDelegationSetLimitRequest private constructor(builder: Builder) {
    /**
     * The ID of the delegation set that you want to get the limit for.
     */
    public val delegationSetId: kotlin.String? = builder.delegationSetId
    /**
     * Specify `MAX_ZONES_BY_REUSABLE_DELEGATION_SET` to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.
     */
    public val type: aws.sdk.kotlin.services.route53.model.ReusableDelegationSetLimitType? = builder.type

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.GetReusableDelegationSetLimitRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("GetReusableDelegationSetLimitRequest(")
        append("delegationSetId=$delegationSetId,")
        append("type=$type")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = delegationSetId?.hashCode() ?: 0
        result = 31 * 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 GetReusableDelegationSetLimitRequest

        if (delegationSetId != other.delegationSetId) return false
        if (type != other.type) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.GetReusableDelegationSetLimitRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The ID of the delegation set that you want to get the limit for.
         */
        public var delegationSetId: kotlin.String? = null
        /**
         * Specify `MAX_ZONES_BY_REUSABLE_DELEGATION_SET` to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.
         */
        public var type: aws.sdk.kotlin.services.route53.model.ReusableDelegationSetLimitType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.route53.model.GetReusableDelegationSetLimitRequest) : this() {
            this.delegationSetId = x.delegationSetId
            this.type = x.type
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.route53.model.GetReusableDelegationSetLimitRequest = GetReusableDelegationSetLimitRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy