commonMain.aws.sdk.kotlin.services.redshift.model.GetReservedNodeExchangeOfferingsRequest.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
/**
*
*/
public class GetReservedNodeExchangeOfferingsRequest private constructor(builder: Builder) {
/**
* A value that indicates the starting point for the next set of ReservedNodeOfferings.
*/
public val marker: kotlin.String? = builder.marker
/**
* An integer setting the maximum number of ReservedNodeOfferings to retrieve.
*/
public val maxRecords: kotlin.Int? = builder.maxRecords
/**
* A string representing the node identifier for the DC1 Reserved Node to be exchanged.
*/
public val reservedNodeId: kotlin.String? = builder.reservedNodeId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.GetReservedNodeExchangeOfferingsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetReservedNodeExchangeOfferingsRequest(")
append("marker=$marker,")
append("maxRecords=$maxRecords,")
append("reservedNodeId=$reservedNodeId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = marker?.hashCode() ?: 0
result = 31 * result + (maxRecords ?: 0)
result = 31 * result + (reservedNodeId?.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 GetReservedNodeExchangeOfferingsRequest
if (marker != other.marker) return false
if (maxRecords != other.maxRecords) return false
if (reservedNodeId != other.reservedNodeId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.GetReservedNodeExchangeOfferingsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A value that indicates the starting point for the next set of ReservedNodeOfferings.
*/
public var marker: kotlin.String? = null
/**
* An integer setting the maximum number of ReservedNodeOfferings to retrieve.
*/
public var maxRecords: kotlin.Int? = null
/**
* A string representing the node identifier for the DC1 Reserved Node to be exchanged.
*/
public var reservedNodeId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.GetReservedNodeExchangeOfferingsRequest) : this() {
this.marker = x.marker
this.maxRecords = x.maxRecords
this.reservedNodeId = x.reservedNodeId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.GetReservedNodeExchangeOfferingsRequest = GetReservedNodeExchangeOfferingsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}