commonMain.aws.sdk.kotlin.services.athena.model.GetCapacityReservationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetCapacityReservationResponse private constructor(builder: Builder) {
/**
* The requested capacity reservation structure.
*/
public val capacityReservation: aws.sdk.kotlin.services.athena.model.CapacityReservation? = builder.capacityReservation
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.GetCapacityReservationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetCapacityReservationResponse(")
append("capacityReservation=$capacityReservation")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = capacityReservation?.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 GetCapacityReservationResponse
if (capacityReservation != other.capacityReservation) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.GetCapacityReservationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The requested capacity reservation structure.
*/
public var capacityReservation: aws.sdk.kotlin.services.athena.model.CapacityReservation? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.GetCapacityReservationResponse) : this() {
this.capacityReservation = x.capacityReservation
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.GetCapacityReservationResponse = GetCapacityReservationResponse(this)
/**
* construct an [aws.sdk.kotlin.services.athena.model.CapacityReservation] inside the given [block]
*/
public fun capacityReservation(block: aws.sdk.kotlin.services.athena.model.CapacityReservation.Builder.() -> kotlin.Unit) {
this.capacityReservation = aws.sdk.kotlin.services.athena.model.CapacityReservation.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}