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

commonMain.aws.sdk.kotlin.services.neptune.model.ServerlessV2ScalingConfigurationInfo.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.neptune.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Shows the scaling configuration for a Neptune Serverless DB cluster.
 *
 * For more information, see [Using Amazon Neptune Serverless](https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html) in the *Amazon Neptune User Guide*.
 */
public class ServerlessV2ScalingConfigurationInfo private constructor(builder: Builder) {
    /**
     * The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.
     */
    public val maxCapacity: kotlin.Double? = builder.maxCapacity
    /**
     * The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.
     */
    public val minCapacity: kotlin.Double? = builder.minCapacity

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

    override fun toString(): kotlin.String = buildString {
        append("ServerlessV2ScalingConfigurationInfo(")
        append("maxCapacity=$maxCapacity,")
        append("minCapacity=$minCapacity")
        append(")")
    }

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

        if (!(maxCapacity?.equals(other.maxCapacity) ?: (other.maxCapacity == null))) return false
        if (!(minCapacity?.equals(other.minCapacity) ?: (other.minCapacity == null))) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.
         */
        public var maxCapacity: kotlin.Double? = null
        /**
         * The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.
         */
        public var minCapacity: kotlin.Double? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.neptune.model.ServerlessV2ScalingConfigurationInfo) : this() {
            this.maxCapacity = x.maxCapacity
            this.minCapacity = x.minCapacity
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy