commonMain.aws.sdk.kotlin.services.redshift.model.ModifyClusterDbRevisionRequest.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 ModifyClusterDbRevisionRequest private constructor(builder: Builder) {
/**
* The unique identifier of a cluster whose database revision you want to modify.
*
* Example: `examplecluster`
*/
public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
/**
* The identifier of the database revision. You can retrieve this value from the response to the DescribeClusterDbRevisions request.
*/
public val revisionTarget: kotlin.String? = builder.revisionTarget
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.ModifyClusterDbRevisionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ModifyClusterDbRevisionRequest(")
append("clusterIdentifier=$clusterIdentifier,")
append("revisionTarget=$revisionTarget")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clusterIdentifier?.hashCode() ?: 0
result = 31 * result + (revisionTarget?.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 ModifyClusterDbRevisionRequest
if (clusterIdentifier != other.clusterIdentifier) return false
if (revisionTarget != other.revisionTarget) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.ModifyClusterDbRevisionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of a cluster whose database revision you want to modify.
*
* Example: `examplecluster`
*/
public var clusterIdentifier: kotlin.String? = null
/**
* The identifier of the database revision. You can retrieve this value from the response to the DescribeClusterDbRevisions request.
*/
public var revisionTarget: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.ModifyClusterDbRevisionRequest) : this() {
this.clusterIdentifier = x.clusterIdentifier
this.revisionTarget = x.revisionTarget
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.ModifyClusterDbRevisionRequest = ModifyClusterDbRevisionRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}