commonMain.aws.sdk.kotlin.services.medicalimaging.model.DeleteDatastoreResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of medicalimaging-jvm Show documentation
Show all versions of medicalimaging-jvm Show documentation
The AWS SDK for Kotlin client for Medical Imaging
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.medicalimaging.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteDatastoreResponse private constructor(builder: Builder) {
/**
* The data store identifier.
*/
public val datastoreId: kotlin.String = requireNotNull(builder.datastoreId) { "A non-null value must be provided for datastoreId" }
/**
* The data store status.
*/
public val datastoreStatus: aws.sdk.kotlin.services.medicalimaging.model.DatastoreStatus = requireNotNull(builder.datastoreStatus) { "A non-null value must be provided for datastoreStatus" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.medicalimaging.model.DeleteDatastoreResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteDatastoreResponse(")
append("datastoreId=$datastoreId,")
append("datastoreStatus=$datastoreStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = datastoreId.hashCode()
result = 31 * result + (datastoreStatus.hashCode())
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 DeleteDatastoreResponse
if (datastoreId != other.datastoreId) return false
if (datastoreStatus != other.datastoreStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.medicalimaging.model.DeleteDatastoreResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The data store identifier.
*/
public var datastoreId: kotlin.String? = null
/**
* The data store status.
*/
public var datastoreStatus: aws.sdk.kotlin.services.medicalimaging.model.DatastoreStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.medicalimaging.model.DeleteDatastoreResponse) : this() {
this.datastoreId = x.datastoreId
this.datastoreStatus = x.datastoreStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.medicalimaging.model.DeleteDatastoreResponse = DeleteDatastoreResponse(this)
internal fun correctErrors(): Builder {
if (datastoreId == null) datastoreId = ""
if (datastoreStatus == null) datastoreStatus = DatastoreStatus.SdkUnknown("no value provided")
return this
}
}
}