commonMain.aws.sdk.kotlin.services.deadline.model.ConsumedUsages.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The consumed usage for the resource.
*/
public class ConsumedUsages private constructor(builder: Builder) {
/**
* The amount of the budget consumed.
*/
public val approximateDollarUsage: kotlin.Float = requireNotNull(builder.approximateDollarUsage) { "A non-null value must be provided for approximateDollarUsage" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.ConsumedUsages = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ConsumedUsages(")
append("approximateDollarUsage=$approximateDollarUsage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = approximateDollarUsage.hashCode()
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 ConsumedUsages
if (!(approximateDollarUsage?.equals(other.approximateDollarUsage) ?: (other.approximateDollarUsage == null))) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.ConsumedUsages = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The amount of the budget consumed.
*/
public var approximateDollarUsage: kotlin.Float? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.ConsumedUsages) : this() {
this.approximateDollarUsage = x.approximateDollarUsage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.ConsumedUsages = ConsumedUsages(this)
internal fun correctErrors(): Builder {
if (approximateDollarUsage == null) approximateDollarUsage = 0f
return this
}
}
}