commonMain.aws.sdk.kotlin.services.dsql.model.UpdateClusterRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsql-jvm Show documentation
Show all versions of dsql-jvm Show documentation
The AWS SDK for Kotlin client for DSQL
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.dsql.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateClusterRequest private constructor(builder: Builder) {
/**
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully. The subsequent retries with the same client token return the result from the original successful request and they have no additional effect.
*
* If you don't specify a client token, the Amazon Web Services SDK automatically generates one.
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* Specifies whether to enable deletion protection in your cluster.
*/
public val deletionProtectionEnabled: kotlin.Boolean? = builder.deletionProtectionEnabled
/**
* The ID of the cluster you want to update.
*/
public val identifier: kotlin.String? = builder.identifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.dsql.model.UpdateClusterRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateClusterRequest(")
append("clientToken=$clientToken,")
append("deletionProtectionEnabled=$deletionProtectionEnabled,")
append("identifier=$identifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (deletionProtectionEnabled?.hashCode() ?: 0)
result = 31 * result + (identifier?.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 UpdateClusterRequest
if (clientToken != other.clientToken) return false
if (deletionProtectionEnabled != other.deletionProtectionEnabled) return false
if (identifier != other.identifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.dsql.model.UpdateClusterRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully. The subsequent retries with the same client token return the result from the original successful request and they have no additional effect.
*
* If you don't specify a client token, the Amazon Web Services SDK automatically generates one.
*/
public var clientToken: kotlin.String? = null
/**
* Specifies whether to enable deletion protection in your cluster.
*/
public var deletionProtectionEnabled: kotlin.Boolean? = null
/**
* The ID of the cluster you want to update.
*/
public var identifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.dsql.model.UpdateClusterRequest) : this() {
this.clientToken = x.clientToken
this.deletionProtectionEnabled = x.deletionProtectionEnabled
this.identifier = x.identifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.dsql.model.UpdateClusterRequest = UpdateClusterRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy