commonMain.aws.sdk.kotlin.services.cloudsearch.model.DeleteDomainResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsearch-jvm Show documentation
Show all versions of cloudsearch-jvm Show documentation
The AWS SDK for Kotlin client for CloudSearch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudsearch.model
/**
* The result of a `DeleteDomain` request. Contains the status of a newly deleted domain, or no status if the domain has already been completely deleted.
*/
public class DeleteDomainResponse private constructor(builder: Builder) {
/**
* The current status of the search domain.
*/
public val domainStatus: aws.sdk.kotlin.services.cloudsearch.model.DomainStatus? = builder.domainStatus
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudsearch.model.DeleteDomainResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteDomainResponse(")
append("domainStatus=$domainStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domainStatus?.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 DeleteDomainResponse
if (domainStatus != other.domainStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudsearch.model.DeleteDomainResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The current status of the search domain.
*/
public var domainStatus: aws.sdk.kotlin.services.cloudsearch.model.DomainStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudsearch.model.DeleteDomainResponse) : this() {
this.domainStatus = x.domainStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudsearch.model.DeleteDomainResponse = DeleteDomainResponse(this)
/**
* construct an [aws.sdk.kotlin.services.cloudsearch.model.DomainStatus] inside the given [block]
*/
public fun domainStatus(block: aws.sdk.kotlin.services.cloudsearch.model.DomainStatus.Builder.() -> kotlin.Unit) {
this.domainStatus = aws.sdk.kotlin.services.cloudsearch.model.DomainStatus.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy