commonMain.aws.sdk.kotlin.services.dsql.model.DeleteClusterRequest.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 DeleteClusterRequest 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
/**
* The ID of the cluster to delete.
*/
public val identifier: kotlin.String? = builder.identifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.dsql.model.DeleteClusterRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteClusterRequest(")
append("clientToken=$clientToken,")
append("identifier=$identifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.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 DeleteClusterRequest
if (clientToken != other.clientToken) return false
if (identifier != other.identifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.dsql.model.DeleteClusterRequest = 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
/**
* The ID of the cluster to delete.
*/
public var identifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.dsql.model.DeleteClusterRequest) : this() {
this.clientToken = x.clientToken
this.identifier = x.identifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.dsql.model.DeleteClusterRequest = DeleteClusterRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy