commonMain.aws.sdk.kotlin.services.neptune.model.ServerlessV2ScalingConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-jvm Show documentation
Show all versions of neptune-jvm Show documentation
The AWS SDK for Kotlin client for Neptune
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptune.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains the scaling configuration of 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 ServerlessV2ScalingConfiguration 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.ServerlessV2ScalingConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ServerlessV2ScalingConfiguration(")
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 ServerlessV2ScalingConfiguration
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.ServerlessV2ScalingConfiguration = 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.ServerlessV2ScalingConfiguration) : this() {
this.maxCapacity = x.maxCapacity
this.minCapacity = x.minCapacity
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.ServerlessV2ScalingConfiguration = ServerlessV2ScalingConfiguration(this)
internal fun correctErrors(): Builder {
return this
}
}
}