commonMain.aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the savings estimation used for calculating savings opportunity for Lambda functions.
*/
public class LambdaSavingsEstimationMode private constructor(builder: Builder) {
/**
* Describes the source for calculation of savings opportunity for Lambda functions.
*/
public val source: aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationModeSource? = builder.source
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationMode = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("LambdaSavingsEstimationMode(")
append("source=$source")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = source?.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 LambdaSavingsEstimationMode
if (source != other.source) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationMode = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Describes the source for calculation of savings opportunity for Lambda functions.
*/
public var source: aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationModeSource? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationMode) : this() {
this.source = x.source
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.LambdaSavingsEstimationMode = LambdaSavingsEstimationMode(this)
internal fun correctErrors(): Builder {
return this
}
}
}