commonMain.aws.sdk.kotlin.services.athena.model.DeleteWorkGroupRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteWorkGroupRequest private constructor(builder: Builder) {
/**
* The option to delete the workgroup and its contents even if the workgroup contains any named queries, query executions, or notebooks.
*/
public val recursiveDeleteOption: kotlin.Boolean? = builder.recursiveDeleteOption
/**
* The unique name of the workgroup to delete.
*/
public val workGroup: kotlin.String? = builder.workGroup
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.DeleteWorkGroupRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteWorkGroupRequest(")
append("recursiveDeleteOption=$recursiveDeleteOption,")
append("workGroup=$workGroup")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = recursiveDeleteOption?.hashCode() ?: 0
result = 31 * result + (workGroup?.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 DeleteWorkGroupRequest
if (recursiveDeleteOption != other.recursiveDeleteOption) return false
if (workGroup != other.workGroup) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.DeleteWorkGroupRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The option to delete the workgroup and its contents even if the workgroup contains any named queries, query executions, or notebooks.
*/
public var recursiveDeleteOption: kotlin.Boolean? = null
/**
* The unique name of the workgroup to delete.
*/
public var workGroup: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.DeleteWorkGroupRequest) : this() {
this.recursiveDeleteOption = x.recursiveDeleteOption
this.workGroup = x.workGroup
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.DeleteWorkGroupRequest = DeleteWorkGroupRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}