commonMain.aws.sdk.kotlin.services.redshift.model.RecurringCharge.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes a recurring charge.
*/
public class RecurringCharge private constructor(builder: Builder) {
/**
* The amount charged per the period of time specified by the recurring charge frequency.
*/
public val recurringChargeAmount: kotlin.Double? = builder.recurringChargeAmount
/**
* The frequency at which the recurring charge amount is applied.
*/
public val recurringChargeFrequency: kotlin.String? = builder.recurringChargeFrequency
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.RecurringCharge = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RecurringCharge(")
append("recurringChargeAmount=$recurringChargeAmount,")
append("recurringChargeFrequency=$recurringChargeFrequency")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = recurringChargeAmount?.hashCode() ?: 0
result = 31 * result + (recurringChargeFrequency?.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 RecurringCharge
if (!(recurringChargeAmount?.equals(other.recurringChargeAmount) ?: (other.recurringChargeAmount == null))) return false
if (recurringChargeFrequency != other.recurringChargeFrequency) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.RecurringCharge = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The amount charged per the period of time specified by the recurring charge frequency.
*/
public var recurringChargeAmount: kotlin.Double? = null
/**
* The frequency at which the recurring charge amount is applied.
*/
public var recurringChargeFrequency: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.RecurringCharge) : this() {
this.recurringChargeAmount = x.recurringChargeAmount
this.recurringChargeFrequency = x.recurringChargeFrequency
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.RecurringCharge = RecurringCharge(this)
internal fun correctErrors(): Builder {
return this
}
}
}